Changeset 48534 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 19, 2013 2:40:56 PM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIDialog.cpp
r46323 r48534 47 47 } 48 48 49 int QIDialog::exec(bool fShow /* = true */, bool fApplicationModal /* = false*/)49 int QIDialog::exec(bool fShow /* = true */, bool fApplicationModal /* = false*/) 50 50 { 51 51 /* Reset the result-code: */ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIMessageBox.cpp
r46831 r48534 38 38 39 39 QIMessageBox::QIMessageBox(const QString &strCaption, const QString &strMessage, AlertIconType iconType, 40 int iButton1 /* = 0*/, int iButton2 /*= 0*/, int iButton3 /*= 0*/, QWidget *pParent /*= 0*/)40 int iButton1 /* = 0*/, int iButton2 /* = 0*/, int iButton3 /* = 0*/, QWidget *pParent /* = 0*/) 41 41 : QIDialog(pParent) 42 42 , m_iButton1(iButton1) … … 405 405 406 406 /* static */ 407 QPixmap QIMessageBox::standardPixmap(AlertIconType iconType, QWidget *pWidget /* = 0*/)407 QPixmap QIMessageBox::standardPixmap(AlertIconType iconType, QWidget *pWidget /* = 0*/) 408 408 { 409 409 /* Prepare standard icon: */ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIStateIndicator.cpp
r46650 r48534 26 26 #endif 27 27 28 QIStateIndicator::QIStateIndicator(QWidget *pParent /* = 0*/)28 QIStateIndicator::QIStateIndicator(QWidget *pParent /* = 0*/) 29 29 : QIWithRetranslateUI<QFrame>(pParent) 30 30 , mState(0) -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIAnimationFramework.cpp
r47015 r48534 31 31 const char *pszValuePropertyNameStart, const char *pszValuePropertyNameFinal, 32 32 const char *pszSignalForward, const char *pszSignalReverse, 33 bool fReverse /* = false*/, int iAnimationDuration /*= 300*/)33 bool fReverse /* = false*/, int iAnimationDuration /* = 300*/) 34 34 { 35 35 /* Return newly created animation-machine: */ … … 43 43 UIAnimationLoop* UIAnimationLoop::installAnimationLoop(QWidget *pTarget, const char *pszPropertyName, 44 44 const char *pszValuePropertyNameStart, const char *pszValuePropertyNameFinal, 45 int iAnimationDuration /* = 300*/)45 int iAnimationDuration /* = 300*/) 46 46 { 47 47 /* Return newly created animation-loop: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r48531 r48534 125 125 const QString &strMessage, 126 126 const QString &strDetails, 127 const char *pcszAutoConfirmId /* = 0*/,128 int iButton1 /* = 0*/,129 int iButton2 /* = 0*/,130 int iButton3 /* = 0*/,127 const char *pcszAutoConfirmId /* = 0*/, 128 int iButton1 /* = 0*/, 129 int iButton2 /* = 0*/, 130 int iButton3 /* = 0*/, 131 131 const QString &strButtonText1 /* = QString() */, 132 132 const QString &strButtonText2 /* = QString() */, … … 157 157 const QString &strMessage, 158 158 const QString &strDetails, 159 const char *pcszAutoConfirmId /* = 0*/) const159 const char *pcszAutoConfirmId /* = 0*/) const 160 160 { 161 161 message(pParent, type, strMessage, strDetails, pcszAutoConfirmId, … … 166 166 const QString &strMessage, 167 167 const QString &strDetails, 168 const char *pcszAutoConfirmId /* = 0*/,169 const QString &strOkButtonText /* = QString()*/,170 const QString &strCancelButtonText /* = QString()*/) const168 const char *pcszAutoConfirmId /* = 0*/, 169 const QString &strOkButtonText /* = QString()*/, 170 const QString &strCancelButtonText /* = QString()*/) const 171 171 { 172 172 return (message(pParent, type, strMessage, strDetails, pcszAutoConfirmId, … … 182 182 void UIMessageCenter::alert(QWidget *pParent, MessageType type, 183 183 const QString &strMessage, 184 const char *pcszAutoConfirmId /* = 0*/) const184 const char *pcszAutoConfirmId /* = 0*/) const 185 185 { 186 186 error(pParent, type, strMessage, QString(), pcszAutoConfirmId); … … 190 190 const QString &strMessage, 191 191 const char *pcszAutoConfirmId/* = 0*/, 192 int iButton1 /* = 0*/,193 int iButton2 /* = 0*/,194 int iButton3 /* = 0*/,195 const QString &strButtonText1 /* = QString()*/,196 const QString &strButtonText2 /* = QString()*/,197 const QString &strButtonText3 /* = QString()*/) const192 int iButton1 /* = 0*/, 193 int iButton2 /* = 0*/, 194 int iButton3 /* = 0*/, 195 const QString &strButtonText1 /* = QString()*/, 196 const QString &strButtonText2 /* = QString()*/, 197 const QString &strButtonText3 /* = QString()*/) const 198 198 { 199 199 return message(pParent, type, strMessage, QString(), pcszAutoConfirmId, … … 203 203 bool UIMessageCenter::questionBinary(QWidget *pParent, MessageType type, 204 204 const QString &strMessage, 205 const char *pcszAutoConfirmId /* = 0*/,206 const QString &strOkButtonText /* = QString()*/,207 const QString &strCancelButtonText /* = QString()*/) const205 const char *pcszAutoConfirmId /* = 0*/, 206 const QString &strOkButtonText /* = QString()*/, 207 const QString &strCancelButtonText /* = QString()*/) const 208 208 { 209 209 return (question(pParent, type, strMessage, pcszAutoConfirmId, … … 219 219 int UIMessageCenter::questionTrinary(QWidget *pParent, MessageType type, 220 220 const QString &strMessage, 221 const char *pcszAutoConfirmId /* = 0*/,222 const QString &strChoice1ButtonText /* = QString()*/,223 const QString &strChoice2ButtonText /* = QString()*/,224 const QString &strCancelButtonText /* = QString()*/) const221 const char *pcszAutoConfirmId /* = 0*/, 222 const QString &strChoice1ButtonText /* = QString()*/, 223 const QString &strChoice2ButtonText /* = QString()*/, 224 const QString &strCancelButtonText /* = QString()*/) const 225 225 { 226 226 return question(pParent, type, strMessage, pcszAutoConfirmId, … … 237 237 const QString &strOptionText, 238 238 bool fDefaultOptionValue /* = true */, 239 int iButton1 /* = 0*/,240 int iButton2 /* = 0*/,241 int iButton3 /* = 0*/,239 int iButton1 /* = 0*/, 240 int iButton2 /* = 0*/, 241 int iButton3 /* = 0*/, 242 242 const QString &strButtonName1 /* = QString() */, 243 243 const QString &strButtonName2 /* = QString() */, … … 322 322 const QString &strTitle, 323 323 const QString &strImage /* = "" */, 324 QWidget *pParent /* = 0*/,324 QWidget *pParent /* = 0*/, 325 325 int cMinDuration /* = 2000 */) 326 326 { … … 834 834 } 835 835 836 void UIMessageCenter::cannotTakeSnapshot(const CConsole &console, const QString &strMachineName, QWidget *pParent /* = 0*/) const836 void UIMessageCenter::cannotTakeSnapshot(const CConsole &console, const QString &strMachineName, QWidget *pParent /* = 0*/) const 837 837 { 838 838 error(pParent, MessageType_Error, … … 842 842 } 843 843 844 void UIMessageCenter::cannotTakeSnapshot(const CProgress &progress, const QString &strMachineName, QWidget *pParent /* = 0*/) const844 void UIMessageCenter::cannotTakeSnapshot(const CProgress &progress, const QString &strMachineName, QWidget *pParent /* = 0*/) const 845 845 { 846 846 error(pParent, MessageType_Error, … … 884 884 } 885 885 886 bool UIMessageCenter::confirmNATNetworkRemoval(const QString &strName, QWidget *pParent /* = 0*/) const886 bool UIMessageCenter::confirmNATNetworkRemoval(const QString &strName, QWidget *pParent /* = 0*/) const 887 887 { 888 888 return questionBinary(pParent, MessageType_Question, … … 898 898 } 899 899 900 bool UIMessageCenter::confirmHostOnlyInterfaceRemoval(const QString &strName, QWidget *pParent /* = 0*/) const900 bool UIMessageCenter::confirmHostOnlyInterfaceRemoval(const QString &strName, QWidget *pParent /* = 0*/) const 901 901 { 902 902 return questionBinary(pParent, MessageType_Question, … … 914 914 } 915 915 916 void UIMessageCenter::cannotCreateNATNetwork(const CVirtualBox &vbox, QWidget *pParent /* = 0*/)916 void UIMessageCenter::cannotCreateNATNetwork(const CVirtualBox &vbox, QWidget *pParent /* = 0*/) 917 917 { 918 918 error(pParent, MessageType_Error, … … 921 921 } 922 922 923 void UIMessageCenter::cannotRemoveNATNetwork(const CVirtualBox &vbox, const QString &strNetworkName, QWidget *pParent /* = 0*/)923 void UIMessageCenter::cannotRemoveNATNetwork(const CVirtualBox &vbox, const QString &strNetworkName, QWidget *pParent /* = 0*/) 924 924 { 925 925 error(pParent, MessageType_Error, … … 929 929 } 930 930 931 void UIMessageCenter::cannotCreateDHCPServer(const CVirtualBox &vbox, QWidget *pParent /* = 0*/)931 void UIMessageCenter::cannotCreateDHCPServer(const CVirtualBox &vbox, QWidget *pParent /* = 0*/) 932 932 { 933 933 error(pParent, MessageType_Error, … … 936 936 } 937 937 938 void UIMessageCenter::cannotRemoveDHCPServer(const CVirtualBox &vbox, const QString &strInterfaceName, QWidget *pParent /* = 0*/)938 void UIMessageCenter::cannotRemoveDHCPServer(const CVirtualBox &vbox, const QString &strInterfaceName, QWidget *pParent /* = 0*/) 939 939 { 940 940 error(pParent, MessageType_Error, … … 944 944 } 945 945 946 void UIMessageCenter::cannotCreateHostInterface(const CHost &host, QWidget *pParent /* = 0*/)946 void UIMessageCenter::cannotCreateHostInterface(const CHost &host, QWidget *pParent /* = 0*/) 947 947 { 948 948 error(pParent, MessageType_Error, … … 951 951 } 952 952 953 void UIMessageCenter::cannotCreateHostInterface(const CProgress &progress, QWidget *pParent /* = 0*/)953 void UIMessageCenter::cannotCreateHostInterface(const CProgress &progress, QWidget *pParent /* = 0*/) 954 954 { 955 955 error(pParent, MessageType_Error, … … 958 958 } 959 959 960 void UIMessageCenter::cannotRemoveHostInterface(const CHost &host, const QString &strInterfaceName, QWidget *pParent /* = 0*/)960 void UIMessageCenter::cannotRemoveHostInterface(const CHost &host, const QString &strInterfaceName, QWidget *pParent /* = 0*/) 961 961 { 962 962 error(pParent, MessageType_Error, … … 966 966 } 967 967 968 void UIMessageCenter::cannotRemoveHostInterface(const CProgress &progress, const QString &strInterfaceName, QWidget *pParent /* = 0*/)968 void UIMessageCenter::cannotRemoveHostInterface(const CProgress &progress, const QString &strInterfaceName, QWidget *pParent /* = 0*/) 969 969 { 970 970 error(pParent, MessageType_Error, … … 974 974 } 975 975 976 void UIMessageCenter::cannotSetSystemProperties(const CSystemProperties &properties, QWidget *pParent /* = 0*/) const976 void UIMessageCenter::cannotSetSystemProperties(const CSystemProperties &properties, QWidget *pParent /* = 0*/) const 977 977 { 978 978 error(pParent, MessageType_Critical, … … 981 981 } 982 982 983 void UIMessageCenter::warnAboutUnaccessibleUSB(const COMBaseWithEI &object, QWidget *pParent /* = 0*/) const983 void UIMessageCenter::warnAboutUnaccessibleUSB(const COMBaseWithEI &object, QWidget *pParent /* = 0*/) const 984 984 { 985 985 /* If IMachine::GetUSBController(), IHost::GetUSBDevices() etc. return … … 996 996 } 997 997 998 void UIMessageCenter::warnAboutStateChange(QWidget *pParent /* = 0*/) const998 void UIMessageCenter::warnAboutStateChange(QWidget *pParent /* = 0*/) const 999 999 { 1000 1000 if (warningShown("warnAboutStateChange")) … … 1010 1010 } 1011 1011 1012 bool UIMessageCenter::confirmSettingsReloading(QWidget *pParent /* = 0*/) const1012 bool UIMessageCenter::confirmSettingsReloading(QWidget *pParent /* = 0*/) const 1013 1013 { 1014 1014 return questionBinary(pParent, MessageType_Question, … … 1020 1020 } 1021 1021 1022 int UIMessageCenter::confirmHardDiskAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const1022 int UIMessageCenter::confirmHardDiskAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const 1023 1023 { 1024 1024 return questionTrinary(pParent, MessageType_Question, … … 1030 1030 } 1031 1031 1032 int UIMessageCenter::confirmOpticalAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const1032 int UIMessageCenter::confirmOpticalAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const 1033 1033 { 1034 1034 return questionTrinary(pParent, MessageType_Question, … … 1041 1041 } 1042 1042 1043 int UIMessageCenter::confirmFloppyAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const1043 int UIMessageCenter::confirmFloppyAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const 1044 1044 { 1045 1045 return questionTrinary(pParent, MessageType_Question, … … 1052 1052 } 1053 1053 1054 int UIMessageCenter::confirmRemovingOfLastDVDDevice(QWidget *pParent /* = 0*/) const1054 int UIMessageCenter::confirmRemovingOfLastDVDDevice(QWidget *pParent /* = 0*/) const 1055 1055 { 1056 1056 return questionBinary(pParent, MessageType_Info, … … 1064 1064 void UIMessageCenter::cannotAttachDevice(const CMachine &machine, UIMediumType type, 1065 1065 const QString &strLocation, const StorageSlot &storageSlot, 1066 QWidget *pParent /* = 0*/)1066 QWidget *pParent /* = 0*/) 1067 1067 { 1068 1068 QString strMessage; … … 1094 1094 } 1095 1095 1096 void UIMessageCenter::warnAboutIncorrectPort(QWidget *pParent /* = 0*/) const1096 void UIMessageCenter::warnAboutIncorrectPort(QWidget *pParent /* = 0*/) const 1097 1097 { 1098 1098 alert(pParent, MessageType_Error, … … 1101 1101 } 1102 1102 1103 bool UIMessageCenter::confirmCancelingPortForwardingDialog(QWidget *pParent /* = 0*/) const1103 bool UIMessageCenter::confirmCancelingPortForwardingDialog(QWidget *pParent /* = 0*/) const 1104 1104 { 1105 1105 return questionBinary(pParent, MessageType_Question, … … 1108 1108 } 1109 1109 1110 void UIMessageCenter::cannotCreateSharedFolder(const CMachine &machine, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/)1110 void UIMessageCenter::cannotCreateSharedFolder(const CMachine &machine, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/) 1111 1111 { 1112 1112 error(pParent, MessageType_Error, … … 1117 1117 } 1118 1118 1119 void UIMessageCenter::cannotCreateSharedFolder(const CConsole &console, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/)1119 void UIMessageCenter::cannotCreateSharedFolder(const CConsole &console, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/) 1120 1120 { 1121 1121 error(pParent, MessageType_Error, … … 1126 1126 } 1127 1127 1128 void UIMessageCenter::cannotRemoveSharedFolder(const CMachine &machine, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/)1128 void UIMessageCenter::cannotRemoveSharedFolder(const CMachine &machine, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/) 1129 1129 { 1130 1130 error(pParent, MessageType_Error, … … 1137 1137 } 1138 1138 1139 void UIMessageCenter::cannotRemoveSharedFolder(const CConsole &console, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/)1139 void UIMessageCenter::cannotRemoveSharedFolder(const CConsole &console, const QString &strName, const QString &strPath, QWidget *pParent /* = 0*/) 1140 1140 { 1141 1141 error(pParent, MessageType_Error, … … 1148 1148 } 1149 1149 1150 void UIMessageCenter::cannotSaveMachineSettings(const CMachine &machine, QWidget *pParent /* = 0*/) const1150 void UIMessageCenter::cannotSaveMachineSettings(const CMachine &machine, QWidget *pParent /* = 0*/) const 1151 1151 { 1152 1152 error(pParent, MessageType_Error, … … 1156 1156 } 1157 1157 1158 void UIMessageCenter::cannotChangeMediumType(const CMedium &medium, KMediumType oldMediumType, KMediumType newMediumType, QWidget *pParent /* = 0*/) const1158 void UIMessageCenter::cannotChangeMediumType(const CMedium &medium, KMediumType oldMediumType, KMediumType newMediumType, QWidget *pParent /* = 0*/) const 1159 1159 { 1160 1160 error(pParent, MessageType_Error, … … 1164 1164 } 1165 1165 1166 bool UIMessageCenter::confirmMediumRelease(const UIMedium &medium, const QString &strUsage, QWidget *pParent /* = 0*/) const1166 bool UIMessageCenter::confirmMediumRelease(const UIMedium &medium, const QString &strUsage, QWidget *pParent /* = 0*/) const 1167 1167 { 1168 1168 /* Prepare the message: */ … … 1198 1198 } 1199 1199 1200 bool UIMessageCenter::confirmMediumRemoval(const UIMedium &medium, QWidget *pParent /* = 0*/) const1200 bool UIMessageCenter::confirmMediumRemoval(const UIMedium &medium, QWidget *pParent /* = 0*/) const 1201 1201 { 1202 1202 /* Prepare the message: */ … … 1249 1249 } 1250 1250 1251 int UIMessageCenter::confirmDeleteHardDiskStorage(const QString &strLocation, QWidget *pParent /* = 0*/) const1251 int UIMessageCenter::confirmDeleteHardDiskStorage(const QString &strLocation, QWidget *pParent /* = 0*/) const 1252 1252 { 1253 1253 return questionTrinary(pParent, MessageType_Question, … … 1267 1267 } 1268 1268 1269 void UIMessageCenter::cannotDeleteHardDiskStorage(const CMedium &medium, const QString &strLocation, QWidget *pParent /* = 0*/) const1269 void UIMessageCenter::cannotDeleteHardDiskStorage(const CMedium &medium, const QString &strLocation, QWidget *pParent /* = 0*/) const 1270 1270 { 1271 1271 error(pParent, MessageType_Error, … … 1275 1275 } 1276 1276 1277 void UIMessageCenter::cannotDeleteHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent /* = 0*/) const1277 void UIMessageCenter::cannotDeleteHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent /* = 0*/) const 1278 1278 { 1279 1279 error(pParent, MessageType_Error, … … 1283 1283 } 1284 1284 1285 void UIMessageCenter::cannotDetachDevice(const CMachine &machine, UIMediumType type, const QString &strLocation, const StorageSlot &storageSlot, QWidget *pParent /* = 0*/) const1285 void UIMessageCenter::cannotDetachDevice(const CMachine &machine, UIMediumType type, const QString &strLocation, const StorageSlot &storageSlot, QWidget *pParent /* = 0*/) const 1286 1286 { 1287 1287 /* Prepare the message: */ … … 1314 1314 } 1315 1315 1316 bool UIMessageCenter::cannotRemountMedium(const CMachine &machine, const UIMedium &medium, bool fMount, bool fRetry, QWidget *pParent /* = 0*/) const1316 bool UIMessageCenter::cannotRemountMedium(const CMachine &machine, const UIMedium &medium, bool fMount, bool fRetry, QWidget *pParent /* = 0*/) const 1317 1317 { 1318 1318 /* Compose the message: */ … … 1368 1368 } 1369 1369 1370 void UIMessageCenter::cannotOpenMedium(const CVirtualBox &vbox, UIMediumType type, const QString &strLocation, QWidget *pParent /* = 0*/) const1370 void UIMessageCenter::cannotOpenMedium(const CVirtualBox &vbox, UIMediumType type, const QString &strLocation, QWidget *pParent /* = 0*/) const 1371 1371 { 1372 1372 /* Prepare the message: */ … … 1397 1397 } 1398 1398 1399 void UIMessageCenter::cannotCloseMedium(const UIMedium &medium, const COMResult &rc, QWidget *pParent /* = 0*/) const1399 void UIMessageCenter::cannotCloseMedium(const UIMedium &medium, const COMResult &rc, QWidget *pParent /* = 0*/) const 1400 1400 { 1401 1401 /* Prepare the message: */ … … 1426 1426 } 1427 1427 1428 bool UIMessageCenter::confirmHardDisklessMachine(QWidget *pParent /* = 0*/) const1428 bool UIMessageCenter::confirmHardDisklessMachine(QWidget *pParent /* = 0*/) const 1429 1429 { 1430 1430 return questionBinary(pParent, MessageType_Warning, … … 1438 1438 } 1439 1439 1440 void UIMessageCenter::cannotCreateMachine(const CVirtualBox &vbox, QWidget *pParent /* = 0*/) const1440 void UIMessageCenter::cannotCreateMachine(const CVirtualBox &vbox, QWidget *pParent /* = 0*/) const 1441 1441 { 1442 1442 error(pParent, MessageType_Error, … … 1445 1445 } 1446 1446 1447 void UIMessageCenter::cannotRegisterMachine(const CVirtualBox &vbox, const QString &strMachineName, QWidget *pParent /* = 0*/) const1447 void UIMessageCenter::cannotRegisterMachine(const CVirtualBox &vbox, const QString &strMachineName, QWidget *pParent /* = 0*/) const 1448 1448 { 1449 1449 error(pParent, MessageType_Error, … … 1453 1453 } 1454 1454 1455 void UIMessageCenter::cannotCreateClone(const CMachine &machine, QWidget *pParent /* = 0*/) const1455 void UIMessageCenter::cannotCreateClone(const CMachine &machine, QWidget *pParent /* = 0*/) const 1456 1456 { 1457 1457 error(pParent, MessageType_Error, … … 1461 1461 } 1462 1462 1463 void UIMessageCenter::cannotCreateClone(const CProgress &progress, const QString &strMachineName, QWidget *pParent /* = 0*/) const1463 void UIMessageCenter::cannotCreateClone(const CProgress &progress, const QString &strMachineName, QWidget *pParent /* = 0*/) const 1464 1464 { 1465 1465 error(pParent, MessageType_Error, … … 1469 1469 } 1470 1470 1471 void UIMessageCenter::cannotOverwriteHardDiskStorage(const QString &strLocation, QWidget *pParent /* = 0*/) const1471 void UIMessageCenter::cannotOverwriteHardDiskStorage(const QString &strLocation, QWidget *pParent /* = 0*/) const 1472 1472 { 1473 1473 alert(pParent, MessageType_Info, … … 1479 1479 } 1480 1480 1481 void UIMessageCenter::cannotCreateHardDiskStorage(const CVirtualBox &vbox, const QString &strLocation, QWidget *pParent /* = 0*/) const1481 void UIMessageCenter::cannotCreateHardDiskStorage(const CVirtualBox &vbox, const QString &strLocation, QWidget *pParent /* = 0*/) const 1482 1482 { 1483 1483 error(pParent, MessageType_Error, … … 1487 1487 } 1488 1488 1489 void UIMessageCenter::cannotCreateHardDiskStorage(const CMedium &medium, const QString &strLocation, QWidget *pParent /* = 0*/) const1489 void UIMessageCenter::cannotCreateHardDiskStorage(const CMedium &medium, const QString &strLocation, QWidget *pParent /* = 0*/) const 1490 1490 { 1491 1491 error(pParent, MessageType_Error, … … 1495 1495 } 1496 1496 1497 void UIMessageCenter::cannotCreateHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent /* = 0*/) const1497 void UIMessageCenter::cannotCreateHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent /* = 0*/) const 1498 1498 { 1499 1499 error(pParent, MessageType_Error, … … 1503 1503 } 1504 1504 1505 void UIMessageCenter::cannotRemoveMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const1505 void UIMessageCenter::cannotRemoveMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const 1506 1506 { 1507 1507 alert(pParent, MessageType_Critical, … … 1511 1511 } 1512 1512 1513 void UIMessageCenter::cannotRewriteMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const1513 void UIMessageCenter::cannotRewriteMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const 1514 1514 { 1515 1515 QFileInfo fi(strFolderName); … … 1520 1520 } 1521 1521 1522 void UIMessageCenter::cannotCreateMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const1522 void UIMessageCenter::cannotCreateMachineFolder(const QString &strFolderName, QWidget *pParent /* = 0*/) const 1523 1523 { 1524 1524 QFileInfo fi(strFolderName); … … 1529 1529 } 1530 1530 1531 void UIMessageCenter::cannotImportAppliance(CAppliance &appliance, QWidget *pParent /* = 0*/) const1531 void UIMessageCenter::cannotImportAppliance(CAppliance &appliance, QWidget *pParent /* = 0*/) const 1532 1532 { 1533 1533 /* Preserve error-info: */ … … 1546 1546 } 1547 1547 1548 void UIMessageCenter::cannotImportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent /* = 0*/) const1548 void UIMessageCenter::cannotImportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent /* = 0*/) const 1549 1549 { 1550 1550 error(pParent, MessageType_Error, … … 1554 1554 } 1555 1555 1556 void UIMessageCenter::cannotCheckFiles(const CProgress &progress, QWidget *pParent /* = 0*/) const1556 void UIMessageCenter::cannotCheckFiles(const CProgress &progress, QWidget *pParent /* = 0*/) const 1557 1557 { 1558 1558 error(pParent, MessageType_Error, … … 1561 1561 } 1562 1562 1563 void UIMessageCenter::cannotRemoveFiles(const CProgress &progress, QWidget *pParent /* = 0*/) const1563 void UIMessageCenter::cannotRemoveFiles(const CProgress &progress, QWidget *pParent /* = 0*/) const 1564 1564 { 1565 1565 error(pParent, MessageType_Error, … … 1568 1568 } 1569 1569 1570 bool UIMessageCenter::confirmExportMachinesInSaveState(const QStringList &machineNames, QWidget *pParent /* = 0*/) const1570 bool UIMessageCenter::confirmExportMachinesInSaveState(const QStringList &machineNames, QWidget *pParent /* = 0*/) const 1571 1571 { 1572 1572 return questionBinary(pParent, MessageType_Warning, … … 1582 1582 } 1583 1583 1584 void UIMessageCenter::cannotExportAppliance(const CAppliance &appliance, QWidget *pParent /* = 0*/) const1584 void UIMessageCenter::cannotExportAppliance(const CAppliance &appliance, QWidget *pParent /* = 0*/) const 1585 1585 { 1586 1586 error(pParent, MessageType_Error, … … 1590 1590 } 1591 1591 1592 void UIMessageCenter::cannotExportAppliance(const CMachine &machine, const QString &strPath, QWidget *pParent /* = 0*/) const1592 void UIMessageCenter::cannotExportAppliance(const CMachine &machine, const QString &strPath, QWidget *pParent /* = 0*/) const 1593 1593 { 1594 1594 error(pParent, MessageType_Error, … … 1598 1598 } 1599 1599 1600 void UIMessageCenter::cannotExportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent /* = 0*/) const1600 void UIMessageCenter::cannotExportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent /* = 0*/) const 1601 1601 { 1602 1602 error(pParent, MessageType_Error, … … 1606 1606 } 1607 1607 1608 void UIMessageCenter::cannotFindSnapshotByName(const CMachine &machine, const QString &strName, QWidget *pParent /* = 0*/) const1608 void UIMessageCenter::cannotFindSnapshotByName(const CMachine &machine, const QString &strName, QWidget *pParent /* = 0*/) const 1609 1609 { 1610 1610 error(pParent, MessageType_Error, … … 2135 2135 2136 2136 bool UIMessageCenter::confirmInstallExtensionPack(const QString &strPackName, const QString &strPackVersion, 2137 const QString &strPackDescription, QWidget *pParent /* = 0*/) const2137 const QString &strPackDescription, QWidget *pParent /* = 0*/) const 2138 2138 { 2139 2139 return questionBinary(pParent, MessageType_Question, … … 2154 2154 bool UIMessageCenter::confirmReplaceExtensionPack(const QString &strPackName, const QString &strPackVersionNew, 2155 2155 const QString &strPackVersionOld, const QString &strPackDescription, 2156 QWidget *pParent /* = 0*/) const2156 QWidget *pParent /* = 0*/) const 2157 2157 { 2158 2158 /* Prepare initial message: */ … … 2210 2210 } 2211 2211 2212 bool UIMessageCenter::confirmRemoveExtensionPack(const QString &strPackName, QWidget *pParent /* = 0*/) const2212 bool UIMessageCenter::confirmRemoveExtensionPack(const QString &strPackName, QWidget *pParent /* = 0*/) const 2213 2213 { 2214 2214 return questionBinary(pParent, MessageType_Question, … … 2220 2220 } 2221 2221 2222 void UIMessageCenter::cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0*/) const2222 void UIMessageCenter::cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0*/) const 2223 2223 { 2224 2224 error(pParent, MessageType_Error, … … 2227 2227 } 2228 2228 2229 void UIMessageCenter::warnAboutBadExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0*/) const2229 void UIMessageCenter::warnAboutBadExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0*/) const 2230 2230 { 2231 2231 error(pParent, MessageType_Error, … … 2234 2234 } 2235 2235 2236 void UIMessageCenter::cannotInstallExtPack(const CExtPackFile &extPackFile, const QString &strFilename, QWidget *pParent /* = 0*/) const2236 void UIMessageCenter::cannotInstallExtPack(const CExtPackFile &extPackFile, const QString &strFilename, QWidget *pParent /* = 0*/) const 2237 2237 { 2238 2238 error(pParent, MessageType_Error, … … 2242 2242 } 2243 2243 2244 void UIMessageCenter::cannotInstallExtPack(const CProgress &progress, const QString &strFilename, QWidget *pParent /* = 0*/) const2244 void UIMessageCenter::cannotInstallExtPack(const CProgress &progress, const QString &strFilename, QWidget *pParent /* = 0*/) const 2245 2245 { 2246 2246 error(pParent, MessageType_Error, … … 2250 2250 } 2251 2251 2252 void UIMessageCenter::cannotUninstallExtPack(const CExtPackManager &extPackManager, const QString &strPackName, QWidget *pParent /* = 0*/) const2252 void UIMessageCenter::cannotUninstallExtPack(const CExtPackManager &extPackManager, const QString &strPackName, QWidget *pParent /* = 0*/) const 2253 2253 { 2254 2254 error(pParent, MessageType_Error, … … 2258 2258 } 2259 2259 2260 void UIMessageCenter::cannotUninstallExtPack(const CProgress &progress, const QString &strPackName, QWidget *pParent /* = 0*/) const2260 void UIMessageCenter::cannotUninstallExtPack(const CProgress &progress, const QString &strPackName, QWidget *pParent /* = 0*/) const 2261 2261 { 2262 2262 error(pParent, MessageType_Error, … … 2266 2266 } 2267 2267 2268 void UIMessageCenter::warnAboutExtPackInstalled(const QString &strPackName, QWidget *pParent /* = 0*/) const2268 void UIMessageCenter::warnAboutExtPackInstalled(const QString &strPackName, QWidget *pParent /* = 0*/) const 2269 2269 { 2270 2270 alert(pParent, MessageType_Info, … … 2274 2274 2275 2275 #ifdef VBOX_WITH_DRAG_AND_DROP 2276 void UIMessageCenter::cannotDropData(const CGuest &guest, QWidget *pParent /* = 0*/) const2276 void UIMessageCenter::cannotDropData(const CGuest &guest, QWidget *pParent /* = 0*/) const 2277 2277 { 2278 2278 error(pParent, MessageType_Error, … … 2281 2281 } 2282 2282 2283 void UIMessageCenter::cannotDropData(const CProgress &progress, QWidget *pParent /* = 0*/) const2283 void UIMessageCenter::cannotDropData(const CProgress &progress, QWidget *pParent /* = 0*/) const 2284 2284 { 2285 2285 error(pParent, MessageType_Error, … … 2289 2289 #endif /* VBOX_WITH_DRAG_AND_DROP */ 2290 2290 2291 void UIMessageCenter::cannotOpenLicenseFile(const QString &strPath, QWidget *pParent /* = 0*/) const2291 void UIMessageCenter::cannotOpenLicenseFile(const QString &strPath, QWidget *pParent /* = 0*/) const 2292 2292 { 2293 2293 alert(pParent, MessageType_Error, … … 2296 2296 } 2297 2297 2298 bool UIMessageCenter::confirmOverridingFile(const QString &strPath, QWidget *pParent /* = 0*/) const2298 bool UIMessageCenter::confirmOverridingFile(const QString &strPath, QWidget *pParent /* = 0*/) const 2299 2299 { 2300 2300 return questionBinary(pParent, MessageType_Question, … … 2305 2305 } 2306 2306 2307 bool UIMessageCenter::confirmOverridingFiles(const QVector<QString> &strPaths, QWidget *pParent /* = 0*/) const2307 bool UIMessageCenter::confirmOverridingFiles(const QVector<QString> &strPaths, QWidget *pParent /* = 0*/) const 2308 2308 { 2309 2309 /* If it is only one file use the single question versions above: */ … … 2320 2320 } 2321 2321 2322 bool UIMessageCenter::confirmOverridingFileIfExists(const QString &strPath, QWidget *pParent /* = 0*/) const2322 bool UIMessageCenter::confirmOverridingFileIfExists(const QString &strPath, QWidget *pParent /* = 0*/) const 2323 2323 { 2324 2324 QFileInfo fi(strPath); … … 2329 2329 } 2330 2330 2331 bool UIMessageCenter::confirmOverridingFilesIfExists(const QVector<QString> &strPaths, QWidget *pParent /* = 0*/) const2331 bool UIMessageCenter::confirmOverridingFilesIfExists(const QVector<QString> &strPaths, QWidget *pParent /* = 0*/) const 2332 2332 { 2333 2333 QVector<QString> existingFiles; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIModalWindowManager.cpp
r47612 r48534 151 151 } 152 152 153 void UIModalWindowManager::registerNewParent(QWidget *pWindow, QWidget *pParentWindow /* = 0*/)153 void UIModalWindowManager::registerNewParent(QWidget *pWindow, QWidget *pParentWindow /* = 0*/) 154 154 { 155 155 /* Make sure passed-widget-pointer is not null: */ … … 256 256 } 257 257 258 bool UIModalWindowManager::contains(QWidget *pParentWindow, bool fAsTheTopOfStack /* = false*/)258 bool UIModalWindowManager::contains(QWidget *pParentWindow, bool fAsTheTopOfStack /* = false*/) 259 259 { 260 260 /* False if passed-parent-widget pointer is null: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.cpp
r47911 r48534 172 172 void UIPopupCenter::message(QWidget *pParent, const QString &strPopupPaneID, 173 173 const QString &strMessage, const QString &strDetails, 174 const QString &strButtonText1 /* = QString()*/,175 const QString &strButtonText2 /* = QString()*/,176 bool fProposeAutoConfirmation /* = false*/)174 const QString &strButtonText1 /* = QString()*/, 175 const QString &strButtonText2 /* = QString()*/, 176 bool fProposeAutoConfirmation /* = false*/) 177 177 { 178 178 showPopupPane(pParent, strPopupPaneID, … … 190 190 void UIPopupCenter::alert(QWidget *pParent, const QString &strPopupPaneID, 191 191 const QString &strMessage, 192 bool fProposeAutoConfirmation /* = false*/)192 bool fProposeAutoConfirmation /* = false*/) 193 193 { 194 194 message(pParent, strPopupPaneID, strMessage, QString(), … … 200 200 void UIPopupCenter::question(QWidget *pParent, const QString &strPopupPaneID, 201 201 const QString &strMessage, 202 const QString &strButtonText1 /* = QString()*/,203 const QString &strButtonText2 /* = QString()*/,204 bool fProposeAutoConfirmation /* = false*/)202 const QString &strButtonText1 /* = QString()*/, 203 const QString &strButtonText2 /* = QString()*/, 204 bool fProposeAutoConfirmation /* = false*/) 205 205 { 206 206 message(pParent, strPopupPaneID, strMessage, QString(), … … 216 216 void UIPopupCenter::showPopupPane(QWidget *pParent, const QString &strPopupPaneID, 217 217 const QString &strMessage, const QString &strDetails, 218 QString strButtonText1 /* = QString()*/, QString strButtonText2 /*= QString()*/,219 bool fProposeAutoConfirmation /* = false*/)218 QString strButtonText1 /* = QString()*/, QString strButtonText2 /* = QString()*/, 219 bool fProposeAutoConfirmation /* = false*/) 220 220 { 221 221 /* Make sure parent is set! */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIThreadPool.cpp
r48317 r48534 67 67 68 68 69 UIThreadPool::UIThreadPool(ulong uWorkerCount /* = 3*/, ulong uWorkerIdleTimeout /*= 5000*/)69 UIThreadPool::UIThreadPool(ulong uWorkerCount /* = 3*/, ulong uWorkerIdleTimeout /* = 5000*/) 70 70 : m_workers(uWorkerCount /* maximum worker count */) 71 71 , m_uIdleTimeout(uWorkerIdleTimeout) /* time for worker idle timeout */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r48471 r48534 932 932 } 933 933 934 QString VBoxGlobal::details(const CMedium &cmedium, bool fPredictDiff, bool fUseHtml /* = true*/)934 QString VBoxGlobal::details(const CMedium &cmedium, bool fPredictDiff, bool fUseHtml /* = true*/) 935 935 { 936 936 /* Search for corresponding UI medium: */ … … 1811 1811 } 1812 1812 1813 void VBoxGlobal::startMediumEnumeration(bool fForceStart /* = true*/)1813 void VBoxGlobal::startMediumEnumeration(bool fForceStart /* = true*/) 1814 1814 { 1815 1815 /* Make sure VBoxGlobal is already valid: */ … … 3381 3381 /* static */ 3382 3382 bool VBoxGlobal::shouldWeAllowMachineReconfiguration(CMachine &machine, 3383 bool fIncludingMachineGeneralCheck /* = false*/,3384 bool fIncludingMachineStateCheck /* = false*/)3383 bool fIncludingMachineGeneralCheck /* = false*/, 3384 bool fIncludingMachineStateCheck /* = false*/) 3385 3385 { 3386 3386 /* Should we perform machine general check? */ … … 3411 3411 /* static */ 3412 3412 bool VBoxGlobal::shouldWeShowDetails(CMachine &machine, 3413 bool fIncludingMachineGeneralCheck /* = false*/)3413 bool fIncludingMachineGeneralCheck /* = false*/) 3414 3414 { 3415 3415 /* Should we perform machine general check? */ … … 3432 3432 /* static */ 3433 3433 bool VBoxGlobal::shouldWeAutoMountGuestScreens(CMachine &machine, 3434 bool fIncludingSanityCheck /* = true*/)3434 bool fIncludingSanityCheck /* = true*/) 3435 3435 { 3436 3436 if (fIncludingSanityCheck) … … 3453 3453 /* static */ 3454 3454 bool VBoxGlobal::shouldWeAllowSnapshotOperations(CMachine &machine, 3455 bool fIncludingSanityCheck /* = true*/)3455 bool fIncludingSanityCheck /* = true*/) 3456 3456 { 3457 3457 if (fIncludingSanityCheck) -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumEnumerator.cpp
r48307 r48534 53 53 54 54 55 UIMediumEnumerator::UIMediumEnumerator(ulong uWorkerCount /* = 3*/, ulong uWorkerTimeout /*= 5000*/)55 UIMediumEnumerator::UIMediumEnumerator(ulong uWorkerCount /* = 3*/, ulong uWorkerTimeout /* = 5000*/) 56 56 : m_pThreadPool(0) 57 57 , m_fMediumEnumerationInProgress(false) -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r48316 r48534 225 225 UIMediumManager* UIMediumManager::instance() { return m_spInstance; } 226 226 227 UIMediumManager::UIMediumManager(QWidget *pCenterWidget, bool fRefresh /* = true*/)227 UIMediumManager::UIMediumManager(QWidget *pCenterWidget, bool fRefresh /* = true*/) 228 228 : QIWithRetranslateUI2<QIMainDialog>(0, Qt::Dialog) 229 229 , m_pCenterWidget(pCenterWidget) … … 250 250 251 251 /* static */ 252 void UIMediumManager::showModeless(QWidget *pCenterWidget /* = 0*/, bool fRefresh /*= true*/)252 void UIMediumManager::showModeless(QWidget *pCenterWidget /* = 0*/, bool fRefresh /* = true*/) 253 253 { 254 254 /* Prepare instance if not prepared: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r48496 r48534 342 342 343 343 #ifdef VBOX_WITH_DEBUGGER_GUI 344 void UIKeyboardHandler::setDebuggerActive(bool aActive /* = true*/)344 void UIKeyboardHandler::setDebuggerActive(bool aActive /* = true*/) 345 345 { 346 346 if (aActive) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r48520 r48534 1385 1385 1386 1386 void UIMachineLogic::sltOpenVMSettingsDialog(const QString &strCategory /* = QString() */, 1387 const QString &strControl /* = QString()*/)1387 const QString &strControl /* = QString()*/) 1388 1388 { 1389 1389 /* Do not process if window(s) missed! */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSnapshotsWgt.cpp
r47222 r48534 597 597 } 598 598 599 void VBoxSnapshotsWgt::sltRestoreSnapshot(bool fSuppressNonCriticalWarnings /* = false*/)599 void VBoxSnapshotsWgt::sltRestoreSnapshot(bool fSuppressNonCriticalWarnings /* = false*/) 600 600 { 601 601 /* Get currently chosen item: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r47944 r48534 317 317 } 318 318 319 QVariant UIHotKeyTableModel::headerData(int iSection, Qt::Orientation orientation, int iRole /* = Qt::DisplayRole*/) const319 QVariant UIHotKeyTableModel::headerData(int iSection, Qt::Orientation orientation, int iRole /* = Qt::DisplayRole*/) const 320 320 { 321 321 /* Switch for different roles: */ … … 342 342 } 343 343 344 QVariant UIHotKeyTableModel::data(const QModelIndex &index, int iRole /* = Qt::DisplayRole*/) const344 QVariant UIHotKeyTableModel::data(const QModelIndex &index, int iRole /* = Qt::DisplayRole*/) const 345 345 { 346 346 /* No data for invalid index: */ … … 437 437 } 438 438 439 bool UIHotKeyTableModel::setData(const QModelIndex &index, const QVariant &value, int iRole /* = Qt::EditRole*/)439 bool UIHotKeyTableModel::setData(const QModelIndex &index, const QVariant &value, int iRole /* = Qt::EditRole*/) 440 440 { 441 441 /* Nothing to set for invalid index: */ … … 477 477 } 478 478 479 void UIHotKeyTableModel::sort(int iColumn, Qt::SortOrder order /* = Qt::AscendingOrder*/)479 void UIHotKeyTableModel::sort(int iColumn, Qt::SortOrder order /* = Qt::AscendingOrder*/) 480 480 { 481 481 /* Sort whole the list: */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilmContainer.cpp
r47452 r48534 29 29 #include "UIFilmContainer.h" 30 30 31 UIFilmContainer::UIFilmContainer(QWidget *pParent /* = 0*/)31 UIFilmContainer::UIFilmContainer(QWidget *pParent /* = 0*/) 32 32 : QWidget(pParent) 33 33 , m_pMainLayout(0) … … 121 121 } 122 122 123 UIFilm::UIFilm(int iScreenIndex, BOOL fEnabled, QWidget *pParent /* = 0*/)123 UIFilm::UIFilm(int iScreenIndex, BOOL fEnabled, QWidget *pParent /* = 0*/) 124 124 : QIWithRetranslateUI<QWidget>(pParent) 125 125 , m_iScreenIndex(iScreenIndex) -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp
r46296 r48534 44 44 Qt::Alignment alignment, 45 45 IntegrationMode integrationMode, 46 bool fAutoHide /* = true*/)46 bool fAutoHide /* = true*/) 47 47 : QWidget(pParent) 48 48 /* Variables: General stuff: */ … … 105 105 } 106 106 107 void UIRuntimeMiniToolBar::setAutoHide(bool fAutoHide, bool fPropagateToChild /* = true*/)107 void UIRuntimeMiniToolBar::setAutoHide(bool fAutoHide, bool fPropagateToChild /* = true*/) 108 108 { 109 109 /* Make sure auto-hide really changed: */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupPaneButtonPane.cpp
r47121 r48534 29 29 #include "QIMessageBox.h" 30 30 31 UIPopupPaneButtonPane::UIPopupPaneButtonPane(QWidget *pParent /* = 0*/)31 UIPopupPaneButtonPane::UIPopupPaneButtonPane(QWidget *pParent /* = 0*/) 32 32 : QWidget(pParent) 33 33 , m_iDefaultButton(0) -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.cpp
r46193 r48534 31 31 #include <QWindowsStyle> 32 32 33 UIToolBar::UIToolBar(QWidget *pParent /* = 0*/)33 UIToolBar::UIToolBar(QWidget *pParent /* = 0*/) 34 34 : QToolBar(pParent) 35 35 , m_pMainWindow(qobject_cast<QMainWindow*>(pParent)) -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/VBoxMediaComboBox.cpp
r48314 r48534 97 97 } 98 98 99 QString VBoxMediaComboBox::id (int aIndex /* = -1*/) const99 QString VBoxMediaComboBox::id (int aIndex /* = -1*/) const 100 100 { 101 101 AssertReturn (aIndex == -1 || … … 107 107 } 108 108 109 QString VBoxMediaComboBox::location (int aIndex /* = -1*/) const109 QString VBoxMediaComboBox::location (int aIndex /* = -1*/) const 110 110 { 111 111 AssertReturn (aIndex == -1 ||
Note:
See TracChangeset
for help on using the changeset viewer.