Changeset 33294 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 21, 2010 10:45:26 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 66862
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMediaManagerDlg.cpp
r33238 r33294 1137 1137 for (QList <QString>::const_iterator it = machineIds.begin(); it != machineIds.end(); ++ it) 1138 1138 { 1139 CMachine m = mVBox. GetMachine (*it);1139 CMachine m = mVBox.FindMachine (*it); 1140 1140 if (!mVBox.isOk()) 1141 1141 continue; … … 1187 1187 else 1188 1188 { 1189 session = vboxGlobal().openSession 1189 session = vboxGlobal().openSession(aMachineId); 1190 1190 if (session.isNull()) 1191 1191 return false; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMedium.cpp
r32532 r33294 191 191 for (QVector <QString>::ConstIterator it = machineIds.begin(); it != machineIds.end(); ++ it) 192 192 { 193 CMachine machine = vbox. GetMachine(*it);193 CMachine machine = vbox.FindMachine(*it); 194 194 195 195 QString sName = machine.GetName(); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r33044 r33294 2166 2166 } 2167 2167 2168 CMachine foundMachine = CVirtualBox(mVBox). GetMachine(aId);2168 CMachine foundMachine = CVirtualBox(mVBox).FindMachine(aId); 2169 2169 if (!foundMachine.isNull()) 2170 2170 { … … 4803 4803 if (bForceSeamless && !vmUuid.isEmpty()) 4804 4804 { 4805 mVBox. GetMachine(vmUuid).SetExtraData(VBoxDefs::GUI_Seamless, "on");4805 mVBox.FindMachine(vmUuid).SetExtraData(VBoxDefs::GUI_Seamless, "on"); 4806 4806 } 4807 4807 else if (bForceFullscreen && !vmUuid.isEmpty()) 4808 4808 { 4809 mVBox. GetMachine(vmUuid).SetExtraData(VBoxDefs::GUI_Fullscreen, "on");4809 mVBox.FindMachine(vmUuid).SetExtraData(VBoxDefs::GUI_Fullscreen, "on"); 4810 4810 } 4811 4811 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp
r32789 r33294 779 779 } 780 780 781 CMachine foundMachine = vbox. GetMachine(id);781 CMachine foundMachine = vbox.FindMachine(id); 782 782 if (!foundMachine.isNull()) 783 783 foundMachine.LockMachine(session, KLockType_Write); … … 1407 1407 { 1408 1408 CVirtualBox vbox = vboxGlobal().virtualBox(); 1409 CMachine m = vbox. GetMachine(strId);1409 CMachine m = vbox.FindMachine(strId); 1410 1410 if (!m.isNull()) 1411 1411 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIExportApplianceWzd.cpp
r33077 r33294 254 254 { 255 255 /* Get the machine with the uuid */ 256 CMachine m = vbox. GetMachine(uuid);256 CMachine m = vbox.FindMachine(uuid); 257 257 fResult = m.isOk(); 258 258 if (fResult)
Note:
See TracChangeset
for help on using the changeset viewer.