Changeset 86141 in vbox for trunk/src/VBox
- Timestamp:
- Sep 16, 2020 9:01:16 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/errorprint.cpp
r82968 r86141 135 135 GluePrintRCMessage(rc); 136 136 137 GluePrintErrorContext(pcszContext, pcszSourceFile, ulLine); 137 if (pcszContext != NULL || pcszSourceFile != NULL) 138 GluePrintErrorContext(pcszContext, pcszSourceFile, ulLine); 138 139 } 139 140 … … 156 157 } 157 158 159 void GlueHandleComErrorNoCtx(ComPtr<IUnknown> iface, HRESULT rc) 160 { 161 GlueHandleComError(iface, NULL, rc, NULL, 0); 162 } 163 158 164 void GlueHandleComErrorProgress(ComPtr<IProgress> progress, 159 165 const char *pcszContext,
Note:
See TracChangeset
for help on using the changeset viewer.