Changeset 17696 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 11, 2009 1:49:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r17689 r17696 2167 2167 if (FAILED(vrc)) 2168 2168 { 2169 com::ErrorInfo info(progress); 2170 const char *pcsz = Utf8Str(info.getText()).c_str(); 2169 ProgressErrorInfo info(progress); 2170 Utf8Str str(info.getText()); 2171 const char *pcsz = str.c_str(); 2171 2172 HRESULT rc2 = setError(vrc, 2172 2173 pcsz); … … 2900 2901 if (FAILED(vrc)) 2901 2902 { 2902 com::ErrorInfo info(pProgress2); 2903 const char *pcsz = Utf8Str(info.getText()).c_str(); 2903 ProgressErrorInfo info(pProgress2); 2904 Utf8Str str(info.getText()); 2905 const char *pcsz = str.c_str(); 2904 2906 HRESULT rc2 = setError(vrc, pcsz); 2905 2907 throw rc2;
Note:
See TracChangeset
for help on using the changeset viewer.