- Timestamp:
- Jul 5, 2010 12:40:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63334
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp
r30606 r30608 329 329 330 330 ComPtr<IEvent> ev; 331 int vrc = es->GetEvent(listener, cMsWait, ev.asOutParam());331 rc = es->GetEvent(listener, cMsWait, ev.asOutParam()); 332 332 if (ev) 333 333 { 334 VBoxEventType_T aType 335 vrc = ev->COMGETTER(Type)(&aType);334 VBoxEventType_T aType; 335 rc = ev->COMGETTER(Type)(&aType); 336 336 switch (aType) 337 337 { … … 342 342 Bstr aNextStrGuid; 343 343 gpcev->COMGETTER(MachineId)(aNextStrGuid.asOutParam()); 344 if (aMachGuid 344 if (aMachGuid != Guid(aNextStrGuid)) 345 345 continue; 346 346 Bstr aNextName;
Note:
See TracChangeset
for help on using the changeset viewer.