Changeset 24168 in vbox
- Timestamp:
- Oct 29, 2009 4:22:33 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54107
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r24167 r24168 2216 2216 QAction *mountMediumAction = new QAction (VBoxMedium (medium, mediumType).name(), attachmentMenu); 2217 2217 mountMediumAction->setCheckable (true); 2218 mountMediumAction->setChecked (medium.GetId() == attachment.GetMedium().GetId()); 2218 mountMediumAction->setChecked (!attachment.GetMedium().isNull() && 2219 medium.GetId() == attachment.GetMedium().GetId()); 2219 2220 mountMediumAction->setData (QVariant::fromValue (MountTarget (attachment.GetController().GetName(), 2220 2221 attachment.GetPort(),
Note:
See TracChangeset
for help on using the changeset viewer.