- Timestamp:
- May 26, 2010 1:59:05 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r29725 r29818 430 430 QString strMachineName = machine.GetName() + strSnapshotName; 431 431 if (state != KMachineState_Null) 432 strMachineName += " [" + vboxGlobal().toString(state) + "] - "; 433 strMachineName += m_strWindowTitlePrefix; 432 strMachineName += " [" + vboxGlobal().toString(state) + "]"; 433 /* Unusual on the Mac. */ 434 #ifndef Q_WS_MAC 435 strMachineName += " - " + m_strWindowTitlePrefix; 436 #endif /* Q_WS_MAC */ 434 437 if (machine.GetMonitorCount() > 1) 435 438 strMachineName += QString(" : %1").arg(m_uScreenId + 1);
Note:
See TracChangeset
for help on using the changeset viewer.