Changeset 10842 in vbox for trunk/src/VBox/Main/ConsoleImpl.cpp
- Timestamp:
- Jul 23, 2008 7:56:36 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r10814 r10842 5709 5709 5710 5710 /* For now, this may be called only once. Ignore subsequent calls. */ 5711 AssertMsgReturnVoid (task->mErrorMsg.isNull(), 5712 ("Cannot set error to '%s': it is already set to '%s'", 5713 errorMsg.raw(), task->mErrorMsg.raw())); 5711 if (!task->mErrorMsg.isNull()) 5712 { 5713 #if !defined(DEBUG_bird) 5714 AssertMsgFailed (("Cannot set error to '%s': it is already set to '%s'", 5715 errorMsg.raw(), task->mErrorMsg.raw())); 5716 #endif 5717 return; 5718 } 5714 5719 5715 5720 task->mErrorMsg = errorMsg;
Note:
See TracChangeset
for help on using the changeset viewer.