Changeset 22173 in vbox for trunk/src/VBox/Main/glue/VirtualBoxErrorInfo.cpp
- Timestamp:
- Aug 11, 2009 3:38:59 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50951
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/VirtualBoxErrorInfo.cpp
r21878 r22173 41 41 * Initializes the error info object with the given error details. 42 42 */ 43 HRESULT VirtualBoxErrorInfo::init (HRESULT aResultCode, const GUID *aIID, 44 const char *aComponent, const char *aText, 45 IVirtualBoxErrorInfo *aNext) 43 HRESULT VirtualBoxErrorInfo::init(HRESULT aResultCode, 44 const GUID *aIID, 45 const char *aComponent, 46 const Utf8Str &strText, 47 IVirtualBoxErrorInfo *aNext) 46 48 { 47 49 mResultCode = aResultCode; … … 51 53 52 54 mComponent = aComponent; 53 mText = aText;55 mText = strText; 54 56 mNext = aNext; 55 57
Note:
See TracChangeset
for help on using the changeset viewer.