Changeset 45783 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 26, 2013 3:41:39 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85350
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r45780 r45783 940 940 { 941 941 HRESULT hr = pThisEvent->COMGETTER(Type)(pType); 942 ComAssertComRC(hr); 942 if (FAILED(hr)) 943 vrc = VERR_COM_UNEXPECTED; 943 944 } 944 945 if (ppEvent) -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r45782 r45783 209 209 unconst(mEventSource).createObject(); 210 210 Assert(!mEventSource.isNull()); 211 HRESULThr = mEventSource->init(static_cast<IGuestSession*>(this));211 hr = mEventSource->init(static_cast<IGuestSession*>(this)); 212 212 if (FAILED(hr)) 213 213 rc = VERR_COM_UNEXPECTED;
Note:
See TracChangeset
for help on using the changeset viewer.