Changeset 61930 in vbox for trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
- Timestamp:
- Jun 29, 2016 12:37:43 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r61644 r61930 8030 8030 rc = rc2; 8031 8031 if (online) 8032 i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", 8033 N_("Broken shared folder!")); 8032 i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", N_("Broken shared folder!")); 8034 8033 } 8035 8034 … … 9237 9236 9238 9237 /** 9239 * VM runtime error callback function. 9238 * VM runtime error callback function (FNVMATRUNTIMEERROR). 9239 * 9240 9240 * See VMSetRuntimeError for the detailed description of parameters. 9241 9241 * … … 9250 9250 */ 9251 9251 /* static */ DECLCALLBACK(void) 9252 Console::i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags, 9253 const char *pszErrorId, 9254 const char *pszFormat, va_list va) 9252 Console::i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags, 9253 const char *pszErrorId, const char *pszFormat, va_list va) 9255 9254 { 9256 9255 bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL); … … 9679 9678 { 9680 9679 ErrorInfoKeeper eik; 9681 pConsole->i_ setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",9680 pConsole->i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", 9682 9681 N_("The shared folder '%s' could not be set up: %ls.\n" 9683 9682 "The shared folder setup will not be complete. It is recommended to power down the virtual "
Note:
See TracChangeset
for help on using the changeset viewer.