- Timestamp:
- Aug 6, 2012 6:29:44 PM (12 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r42611 r42636 305 305 * starting parameters around. 306 306 */ 307 struct GuestProcessStartupInfo 308 { 307 class GuestProcessStartupInfo 308 { 309 public: 310 309 311 GuestProcessStartupInfo(void) 310 312 : mFlags(ProcessCreateFlag_None), … … 332 334 public: 333 335 334 GuestProcessStreamValue( ) { }336 GuestProcessStreamValue(void) { } 335 337 GuestProcessStreamValue(const char *pszValue) 336 338 : mValue(pszValue) {} 337 339 338 340 GuestProcessStreamValue(const GuestProcessStreamValue& aThat) 339 : mValue(aThat.mValue) { }341 : mValue(aThat.mValue) { } 340 342 341 343 Utf8Str mValue; -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r42634 r42636 83 83 return VINF_SUCCESS; 84 84 HRESULT hr = mProgress->SetCurrentOperationProgress(uPercent); 85 ComAssertComRC(hr); 85 if (FAILED(hr)) 86 return VERR_COM_UNEXPECTED; 86 87 87 88 return VINF_SUCCESS; … … 205 206 /* Startup process. */ 206 207 ComObjPtr<GuestProcess> pProcess; 207 intrc = pSession->processCreateExInteral(procInfo, pProcess);208 rc = pSession->processCreateExInteral(procInfo, pProcess); 208 209 if (RT_SUCCESS(rc)) 209 210 rc = pProcess->startProcess(); … … 499 500 /* Startup process. */ 500 501 ComObjPtr<GuestProcess> pProcess; 501 intrc = pSession->processCreateExInteral(procInfo, pProcess);502 rc = pSession->processCreateExInteral(procInfo, pProcess); 502 503 if (RT_SUCCESS(rc)) 503 504 rc = pProcess->startProcess();
Note:
See TracChangeset
for help on using the changeset viewer.