Changeset 105654 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Aug 12, 2024 5:25:27 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164345
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/VirtualBoxBase.cpp
r98103 r105654 821 821 822 822 /** 823 * Like setErrorBoth(), but disables the "log" flag in the call to setErrorInternal(). 824 * @param hrc 825 * @param vrc 826 * @param pcszMsgFmt 827 * @param ... 828 * @return 829 */ 830 HRESULT VirtualBoxBase::setErrorBothNoLog(HRESULT hrc, int vrc, const char *pcszMsgFmt, ...) 831 { 832 va_list va; 833 va_start(va, pcszMsgFmt); 834 hrc = setErrorInternalV(hrc, 835 this->getClassIID(), 836 this->getComponentName(), 837 pcszMsgFmt, va, 838 false /* aWarning */, 839 false /* aLogIt */, 840 vrc /* aResultDetail */); 841 va_end(va); 842 return hrc; 843 } 844 845 /** 823 846 * Clear the current error information. 824 847 */
Note:
See TracChangeset
for help on using the changeset viewer.