Changeset 50174 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 23, 2014 9:22:22 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VirtualBoxClientImpl.cpp
r44970 r50174 282 282 * restart attempts in some wedged config can cause high CPU 283 283 * and disk load. */ 284 ComPtr<IVirtualBox> pV Box;285 rc = pV Box.createLocalObject(CLSID_VirtualBox);284 ComPtr<IVirtualBox> pVirtualBox; 285 rc = pVirtualBox.createLocalObject(CLSID_VirtualBox); 286 286 if (FAILED(rc)) 287 287 cMillies = 3 * VBOXCLIENT_DEFAULT_INTERVAL; … … 293 293 /* Update the VirtualBox reference, there's a working 294 294 * VBoxSVC again from now on. */ 295 pThis->mData.m_pVirtualBox = pV Box;295 pThis->mData.m_pVirtualBox = pVirtualBox; 296 296 } 297 297 fireVBoxSVCAvailabilityChangedEvent(pThis->mData.m_pEventSource, TRUE);
Note:
See TracChangeset
for help on using the changeset viewer.