VirtualBox

Changeset 42636 in vbox for trunk


Ignore:
Timestamp:
Aug 6, 2012 6:29:44 PM (12 years ago)
Author:
vboxsync
Message:

Build fix.

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h

    r42611 r42636  
    305305 * starting parameters around.
    306306 */
    307 struct GuestProcessStartupInfo
    308 {
     307class GuestProcessStartupInfo
     308{
     309public:
     310
    309311    GuestProcessStartupInfo(void)
    310312        : mFlags(ProcessCreateFlag_None),
     
    332334public:
    333335
    334     GuestProcessStreamValue() { }
     336    GuestProcessStreamValue(void) { }
    335337    GuestProcessStreamValue(const char *pszValue)
    336338        : mValue(pszValue) {}
    337339
    338340    GuestProcessStreamValue(const GuestProcessStreamValue& aThat)
    339            : mValue(aThat.mValue) {}
     341           : mValue(aThat.mValue) { }
    340342
    341343    Utf8Str mValue;
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r42634 r42636  
    8383        return VINF_SUCCESS;
    8484    HRESULT hr = mProgress->SetCurrentOperationProgress(uPercent);
    85     ComAssertComRC(hr);
     85    if (FAILED(hr))
     86        return VERR_COM_UNEXPECTED;
    8687
    8788    return VINF_SUCCESS;
     
    205206                    /* Startup process. */
    206207                    ComObjPtr<GuestProcess> pProcess;
    207                     int rc = pSession->processCreateExInteral(procInfo, pProcess);
     208                    rc = pSession->processCreateExInteral(procInfo, pProcess);
    208209                    if (RT_SUCCESS(rc))
    209210                        rc = pProcess->startProcess();
     
    499500                /* Startup process. */
    500501                ComObjPtr<GuestProcess> pProcess;
    501                 int rc = pSession->processCreateExInteral(procInfo, pProcess);
     502                rc = pSession->processCreateExInteral(procInfo, pProcess);
    502503                if (RT_SUCCESS(rc))
    503504                    rc = pProcess->startProcess();
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette