Changeset 45687 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 23, 2013 6:19:21 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85224
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r45686 r45687 5500 5500 #else /* VBOX_WITH_GUEST_PROPS */ 5501 5501 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")); 5503 5505 if (aValue != NULL && !RT_VALID_PTR(aValue)) 5504 return setError( E_INVALIDARG, tr("Invalid value pointer"));5506 return setError(0x80face01, tr("Invalid value pointer")); 5505 5507 if (aFlags != NULL && !RT_VALID_PTR(aFlags)) 5506 return setError( E_INVALIDARG, tr("Invalid flags pointer"));5508 return setError(0x80face02, tr("Invalid flags pointer")); 5507 5509 5508 5510 AutoCaller autoCaller(this);
Note:
See TracChangeset
for help on using the changeset viewer.