Changeset 31270 in vbox
- Timestamp:
- Aug 2, 2010 8:18:26 AM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r31241 r31270 5188 5188 /* Tell VBoxSVC and Machine about the progress object so they can combine 5189 5189 proxy it to any openRemoteSession caller. */ 5190 LogFlowThisFunc(("Calling BeginPowerUp...\n")); 5190 5191 rc = mControl->BeginPowerUp(powerupProgress); 5191 5192 if (FAILED(rc)) … … 5195 5196 } 5196 5197 5198 LogFlowThisFunc(("Checking if canceled...\n")); 5197 5199 BOOL fCanceled; 5198 5200 rc = powerupProgress->COMGETTER(Canceled)(&fCanceled); … … 5204 5206 return setError(E_FAIL, tr("Powerup was canceled")); 5205 5207 } 5208 LogFlowThisFunc(("Not canceled yet.\n")); 5206 5209 5207 5210 /* setup task object and thread to carry out the operation -
trunk/src/VBox/Main/MachineImpl.cpp
r31242 r31270 10076 10076 STDMETHODIMP SessionMachine::BeginPowerUp(IProgress *aProgress) 10077 10077 { 10078 LogFlowThisFunc(("aProgress=%p\n", aProgress)); 10078 10079 AutoCaller autoCaller(this); 10079 10080 AssertComRCReturn(autoCaller.rc(), autoCaller.rc()); … … 10087 10088 mData->mSession.mProgress->setOtherProgressObject(aProgress); 10088 10089 10090 LogFlowThisFunc(("returns S_OK.\n")); 10089 10091 return S_OK; 10090 10092 }
Note:
See TracChangeset
for help on using the changeset viewer.