Changeset 4134 in vbox for trunk/src/VBox
- Timestamp:
- Aug 13, 2007 4:35:46 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23613
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r4131 r4134 6743 6743 AssertReturnVoid (that); 6744 6744 6745 Utf8Str message = Utf8StrFmt (pszFormat, args);6745 Utf8Str message = Utf8StrFmtVA (pszFormat, args); 6746 6746 6747 6747 LogRel (("Console: VM runtime error: fatal=%RTbool, " -
trunk/src/VBox/Main/ProgressImpl.cpp
r4071 r4134 839 839 va_list args; 840 840 va_start (args, aText); 841 Bstr text = Utf8StrFmt (aText, args);841 Bstr text = Utf8StrFmtVA (aText, args); 842 842 va_end (args); 843 843 -
trunk/src/VBox/Main/include/VirtualBoxBase.h
r4071 r4134 1064 1064 { 1065 1065 return setErrorInternal (aResultCode, aIID, aComponent, 1066 Utf8StrFmt (aText, aArgs),1066 Utf8StrFmtVA (aText, aArgs), 1067 1067 false /* aPreserve */); 1068 1068 } … … 1073 1073 { 1074 1074 return setErrorInternal (aResultCode, aIID, aComponent, 1075 Utf8StrFmt (aText, aArgs),1075 Utf8StrFmtVA (aText, aArgs), 1076 1076 true /* aPreserve */); 1077 1077 }
Note:
See TracChangeset
for help on using the changeset viewer.