- Timestamp:
- May 12, 2009 1:41:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r19377 r19622 1920 1920 /* try to find the given machine */ 1921 1921 ComPtr <IMachine> machine; 1922 Bstr uuid (VMNameOrUuid);1923 if (! uuid.isEmpty())1924 { 1925 CHECK_ERROR (a->virtualBox, GetMachine ( uuid, machine.asOutParam()));1922 Bstr uuid; 1923 if (!Guid(VMNameOrUuid).isEmpty()) 1924 { 1925 CHECK_ERROR (a->virtualBox, GetMachine (Bstr(VMNameOrUuid), machine.asOutParam())); 1926 1926 } 1927 1927 else
Note:
See TracChangeset
for help on using the changeset viewer.