Changeset 79139 in vbox
- Timestamp:
- Jun 14, 2019 1:00:56 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/vboxapi.py
r79092 r79139 1223 1223 if type(oValue) is int: 1224 1224 dErrorValToName[oValue] = sKey 1225 # Always prefer the COM names (see aliasing in platform specific code): 1226 for sKey in ('S_OK', 'E_FAIL', 'E_ABORT', 'E_POINTER', 'E_NOINTERFACE', 'E_INVALIDARG', 1227 'E_OUTOFMEMORY', 'E_NOTIMPL', 'E_UNEXPECTED',): 1228 oValue = getattr(self.statuses, sKey, None) 1229 if oValue is not None: 1230 dErrorValToName[oValue] = sKey 1225 1231 self._dErrorValToName = dErrorValToName 1226 1232
Note:
See TracChangeset
for help on using the changeset viewer.