- Timestamp:
- Sep 12, 2008 4:12:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r12424 r12435 270 270 dbgStatisticsAction = new QAction (this); 271 271 dbgCommandLineAction = new QAction (this); 272 if (vboxGlobal().getDebuggerModule()== NIL_RTLDRMOD) 273 { 274 dbgStatisticsAction->setEnabled (false); 275 dbgCommandLineAction->setEnabled (false); 276 } 272 277 dbgLoggingAction = new QAction (this); 273 278 dbgLoggingAction->setCheckable (true); 274 dbgLoggingAction->setIcon (VBoxGlobal::iconSet (":/start_16px.png")); /// @todo find the default check boxes.275 279 } 276 280 else … … 3462 3466 if (RT_SUCCESS (rc)) 3463 3467 { 3464 dbgAdjustRelativePos(); 3465 return true; 3466 } 3467 LogRel(("DBGGuiCreate failed, rc=%Rrc\n", rc)); 3468 if ( DBGGUIVT_ARE_VERSIONS_COMPATIBLE(mDbgGuiVT->u32Version, DBGGUIVT_VERSION) 3469 || mDbgGuiVT->u32EndVersion != mDbgGuiVT->u32Version) 3470 { 3471 dbgAdjustRelativePos(); 3472 return true; 3473 } 3474 3475 LogRel(("DBGGuiCreate failed, incompatible versions (loaded %#x/%#x, expected %#x)\n", 3476 mDbgGuiVT->u32Version, mDbgGuiVT->u32EndVersion, DBGGUIVT_VERSION)); 3477 } 3478 else 3479 LogRel(("DBGGuiCreate failed, rc=%Rrc\n", rc)); 3468 3480 } 3469 3481 else
Note:
See TracChangeset
for help on using the changeset viewer.