VirtualBox

Changeset 45687 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Apr 23, 2013 6:19:21 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
85224
Message:

Console::setGuestProperty: Temporary E_INVALIDARG debugging hack.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r45686 r45687  
    55005500#else /* VBOX_WITH_GUEST_PROPS */
    55015501    if (!RT_VALID_PTR(aName))
    5502         return setError(E_INVALIDARG, tr("Name cannot be NULL or an invalid pointer"));
     5502        /** @todo replace hardcoded constants with E_INVALIDARG once testboxes has
     5503         *        been debugged. */
     5504        return setError(0x80face00, tr("Name cannot be NULL or an invalid pointer"));
    55035505    if (aValue != NULL && !RT_VALID_PTR(aValue))
    5504         return setError(E_INVALIDARG, tr("Invalid value pointer"));
     5506        return setError(0x80face01, tr("Invalid value pointer"));
    55055507    if (aFlags != NULL && !RT_VALID_PTR(aFlags))
    5506         return setError(E_INVALIDARG, tr("Invalid flags pointer"));
     5508        return setError(0x80face02, tr("Invalid flags pointer"));
    55075509
    55085510    AutoCaller autoCaller(this);
Note: See TracChangeset for help on using the changeset viewer.

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