Changeset 30357 in vbox
- Timestamp:
- Jun 22, 2010 8:48:18 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r30199 r30357 20 20 # include "precomp.h" 21 21 #else /* !VBOX_WITH_PRECOMPILED_HEADERS */ 22 #include "VBoxSelectorWnd.h"23 22 #include "QISplitter.h" 24 23 #include "QITabWidget.h" … … 28 27 #include "UINewVMWzd.h" 29 28 #include "UISpacerWidgets.h" 29 #include "UISpecialControls.h" 30 30 #include "UIVMListView.h" 31 31 #include "VBoxGlobal.h" 32 32 #include "VBoxMediaManagerDlg.h" 33 33 #include "VBoxProblemReporter.h" 34 #include "VBoxSelectorWnd.h" 34 35 #include "VBoxSettingsDialogSpecific.h" 35 36 #include "VBoxSnapshotsWgt.h" 36 #include "VBoxSpecialControls.h"37 37 #include "VBoxToolBar.h" 38 38 #include "VBoxUtils.h" … … 890 890 */ 891 891 void VBoxSelectorWnd::vmSettings (const QString &aCategory, const QString &aControl, 892 const QString &aUuid /* = QUuid_null*/)892 const QString &aUuid /* = QString::null */) 893 893 { 894 894 if (!aCategory.isEmpty() && aCategory [0] != '#') … … 941 941 } 942 942 943 void VBoxSelectorWnd::vmDelete (const QString &aUuid /* = QUuid_null*/)943 void VBoxSelectorWnd::vmDelete (const QString &aUuid /* = QString::null */) 944 944 { 945 945 UIVMItem *item = aUuid.isNull() ? mVMListView->selectedItem() : … … 1007 1007 } 1008 1008 1009 void VBoxSelectorWnd::vmStart (const QString &aUuid /* = QUuid_null*/)1009 void VBoxSelectorWnd::vmStart (const QString &aUuid /* = QString::null */) 1010 1010 { 1011 1011 QUuid uuid (aUuid); … … 1084 1084 } 1085 1085 1086 void VBoxSelectorWnd::vmDiscard (const QString &aUuid /* = QUuid_null*/)1086 void VBoxSelectorWnd::vmDiscard (const QString &aUuid /* = QString::null */) 1087 1087 { 1088 1088 UIVMItem *item = aUuid.isNull() ? mVMListView->selectedItem() : … … 1119 1119 } 1120 1120 1121 void VBoxSelectorWnd::vmPause (bool aPause, const QString &aUuid /* = QUuid_null*/)1121 void VBoxSelectorWnd::vmPause (bool aPause, const QString &aUuid /* = QString::null */) 1122 1122 { 1123 1123 UIVMItem *item = aUuid.isNull() ? mVMListView->selectedItem() : … … 1151 1151 } 1152 1152 1153 void VBoxSelectorWnd::vmRefresh (const QString &aUuid /* = QUuid_null*/)1153 void VBoxSelectorWnd::vmRefresh (const QString &aUuid /* = QString::null */) 1154 1154 { 1155 1155 UIVMItem *item = aUuid.isNull() ? mVMListView->selectedItem() : … … 1164 1164 } 1165 1165 1166 void VBoxSelectorWnd::vmShowLogs (const QString &aUuid /* = QUuid_null*/)1166 void VBoxSelectorWnd::vmShowLogs (const QString &aUuid /* = QString::null */) 1167 1167 { 1168 1168 UIVMItem *item = aUuid.isNull() ? mVMListView->selectedItem() :
Note:
See TracChangeset
for help on using the changeset viewer.