Changeset 1255 in vbox
- Timestamp:
- Mar 6, 2007 10:59:08 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19200
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro
r1062 r1255 208 208 images/refresh_22px.png \ 209 209 images/refresh_disabled_22px.png \ 210 images/description_16px.png \ 211 images/description_disabled_16px.png \ 212 images/edit_description_16px.png \ 213 images/edit_description_disabled_16px.png \ 210 214 images/global_settings_16px.png \ 211 215 images/global_settings_diasbled_16px.png \ -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r1242 r1255 256 256 mBtnEdit->setSizePolicy (QSizePolicy::Preferred, QSizePolicy::Fixed); 257 257 mBtnEdit->setFocusPolicy (QWidget::StrongFocus); 258 mBtnEdit->setIconSet (VBoxGlobal::iconSet ("edit_ shared_folder_16px.png",259 "edit_shared_folder_disabled_16px.png"));258 mBtnEdit->setIconSet (VBoxGlobal::iconSet ("edit_description_16px.png", 259 "edit_description_disabled_16px.png")); 260 260 mBtnEdit->setTextPosition (QToolButton::BesideIcon); 261 261 mBtnEdit->setUsesTextLabel (true); … … 279 279 Assert (!aMachine.isNull()); 280 280 281 QUuid id = aMachine.GetId(); 282 if (id == mMachineId) 283 return; 284 285 mMachineId = id; 281 mMachineId = aMachine.GetId(); 286 282 287 283 QString text = aMachine.GetDescription(); … … 442 438 vmDescriptionPage = new VBoxVMDescriptionPage (this, "vmDescriptionPage"); 443 439 vmTabWidget->addTab (vmDescriptionPage, 444 VBoxGlobal::iconSet (" edit_shared_folder_16px.png"),440 VBoxGlobal::iconSet ("description_16px.png"), 445 441 QString::null); 446 442 … … 962 958 963 959 vmTabWidget->changeTab (vmDetailsView, tr ("&Details")); 964 vmTabWidget->changeTab (vmSnapshotsWgt, tr ("&Snapshots"));965 vmTabWidget->changeTab (vmDescriptionPage, tr ("D&escription"));960 /* note: Snapshots and Details tabs are changed dynamically by 961 * vmListBoxCurrentChanged() */ 966 962 967 963 /* ensure the details and screenshot view are updated */ … … 1083 1079 /* update the description tab name */ 1084 1080 QString name = m.GetDescription().isEmpty() ? 1085 tr ("D es&cription") : tr ("Des&cription (*)");1081 tr ("D&escription") : tr ("D&escription *"); 1086 1082 vmTabWidget->changeTab (vmDescriptionPage, name); 1087 1083 /* refresh description widget */
Note:
See TracChangeset
for help on using the changeset viewer.