Changeset 23616 in vbox for trunk/src/VBox
- Timestamp:
- Oct 8, 2009 11:52:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMedium.cpp
r23609 r23616 83 83 else if (!mIsHostDrive) 84 84 mName = mMedium.GetName(); 85 else if (mMedium.GetDescription().is Null())85 else if (mMedium.GetDescription().isEmpty()) 86 86 mName = VBoxGlobal::tr ("Host Drive '%1'", "medium").arg (QDir::toNativeSeparators (mMedium.GetLocation())); 87 87 else 88 mName = VBoxGlobal::tr ("Host Drive %1 (%2)", "medium").arg (mMedium.GetDescription(), mMedium.GetName());88 mName = VBoxGlobal::tr ("Host Drive %1 (%2)", "medium").arg (mMedium.GetDescription(), QDir::toNativeSeparators (mMedium.GetLocation())); 89 89 90 90 mLocation = mMedium.isNull() || mIsHostDrive ? QString ("--") :
Note:
See TracChangeset
for help on using the changeset viewer.