Changeset 34982 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 13, 2010 9:29:24 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68805
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMediaManagerDlg.cpp
r34791 r34982 1064 1064 * will give a corresponding hint. Therefore, once the code is 1065 1065 * changed below, the hint should be re-checked for validity. */ 1066 if (item->state() != KMediumState_Inaccessible) 1066 if (item->state() != KMediumState_Inaccessible && 1067 item->medium().medium().GetMediumFormat().GetCapabilities() & MediumFormatCapabilities_File) 1067 1068 { 1068 1069 int rc = vboxProblem(). -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r34978 r34982 1116 1116 .arg (aMedium.location()); 1117 1117 1118 if (aMedium.type() == VBoxDefs::MediumType_HardDisk) 1118 if (aMedium.type() == VBoxDefs::MediumType_HardDisk && 1119 aMedium.medium().GetMediumFormat().GetCapabilities() & MediumFormatCapabilities_File) 1119 1120 { 1120 1121 if (aMedium.state() == KMediumState_Inaccessible) … … 1131 1132 msg += 1132 1133 tr ("<p>Note that the storage unit of this medium will not be " 1133 "deleted and that it will be possible to add it to " 1134 "the list later again.</p>"); 1134 "deleted and that it will be possible to use it later again.</p>"); 1135 1135 1136 1136 return messageOkCancel (aParent, Question, msg,
Note:
See TracChangeset
for help on using the changeset viewer.