VirtualBox

儲存庫 vbox 的更動 12171


忽略:
時間撮記:
2008-9-6 上午04:15:21 (16 年 以前)
作者:
vboxsync
訊息:

VirtualBox4: Disable VBOX_WITH_DEBUGGER_GUI in the source, avoid messing with makefile globals like DEFS.

位置:
trunk/src/VBox/Frontends/VirtualBox4
檔案:
修改 5 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Frontends/VirtualBox4/Makefile.kmk

    r12170 r12171  
    4141# Disable the debugger for now, this is another story.
    4242VBOX_WITH_DEBUGGER_GUI :=
    43 DEFS := $(filter-out VBOX_WITH_DEBUGGER_GUI,$(DEFS))
    4443
    4544# Guess VBOX_WITH_QT4_SUN
  • trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h

    r12010 r12171  
    3636#include <QDialog>
    3737
    38 #ifdef VBOX_WITH_DEBUGGER_GUI
     38#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    3939# include <VBox/dbggui.h>
    4040#endif
     
    104104    void retranslateUi();
    105105
    106 #ifdef VBOX_WITH_DEBUGGER_GUI
     106#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    107107    bool dbgCreated();
    108108    void dbgDestroy();
     
    234234    QAction *devicesInstallGuestToolsAction;
    235235
    236 #ifdef VBOX_WITH_DEBUGGER_GUI
     236#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    237237    // Debugger actions
    238238    QAction *dbgStatisticsAction;
     
    264264    VBoxUSBMenu *mDevicesUSBMenu;
    265265    /* VBoxSwitchMenu *mDevicesVRDPMenu; */
    266 #ifdef VBOX_WITH_DEBUGGER_GUI
     266#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    267267    // Debugger popup menu
    268268    QMenu *mDbgMenu;
     
    324324    bool mIsAutoSaveMedia : 1;
    325325
    326 #ifdef VBOX_WITH_DEBUGGER_GUI
     326#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    327327    // Debugger GUI
    328328    PDBGGUI dbg_gui;
  • trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h

    r12010 r12171  
    237237    const char *vmRenderModeStr() const { return vm_render_mode_str; }
    238238
    239 #ifdef VBOX_WITH_DEBUGGER_GUI
     239#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    240240    bool isDebuggerEnabled() const { return dbg_enabled; }
    241241    bool isDebuggerVisibleAtStartup() const { return dbg_visible_at_startup; }
     
    714714    const char * vm_render_mode_str;
    715715
    716 #ifdef VBOX_WITH_DEBUGGER_GUI
     716#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    717717    bool dbg_enabled;
    718718    bool dbg_visible_at_startup;
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp

    r12098 r12171  
    6363#endif
    6464
    65 #ifdef VBOX_WITH_DEBUGGER_GUI
     65#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    6666#include <VBox/err.h>
    6767#endif
     
    115115    : QIWithRetranslateUI2<QMainWindow> (aParent, aFlags)
    116116    , mMainMenu (0)
    117 #ifdef VBOX_WITH_DEBUGGER_GUI
     117#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    118118    , dbgStatisticsAction (NULL)
    119119    , dbgCommandLineAction (NULL)
     
    133133    , mIsFirstTimeStarted (false)
    134134    , mIsAutoSaveMedia (true)
    135 #ifdef VBOX_WITH_DEBUGGER_GUI
     135#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    136136    , dbg_gui (NULL)
    137137#endif
     
    262262                                                                     ":/guesttools_disabled_16px.png"));
    263263
    264 #ifdef VBOX_WITH_DEBUGGER_GUI
     264#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    265265    if (vboxGlobal().isDebuggerEnabled())
    266266    {
     
    355355    mDevicesUSBMenu->menuAction()->setData (false);
    356356
    357 #ifdef VBOX_WITH_DEBUGGER_GUI
     357#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    358358    /* Debug popup menu */
    359359    if (vboxGlobal().isDebuggerEnabled())
     
    555555             this, SLOT (processGlobalSettingChange (const char *, const char *)));
    556556
    557 #ifdef VBOX_WITH_DEBUGGER_GUI
     557#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    558558    if (dbgStatisticsAction)
    559559        connect (dbgStatisticsAction, SIGNAL (triggered()),
     
    919919    }
    920920
    921 #ifdef VBOX_WITH_DEBUGGER_GUI
     921#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    922922    /* open debugger windows if requested */
    923923    if (vboxGlobal().isDebuggerVisibleAtStartup())
     
    11001100            {
    11011101                mNormalGeo.setSize (re->size());
    1102 #ifdef VBOX_WITH_DEBUGGER_GUI
     1102#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    11031103                dbgAdjustRelativePos();
    11041104#endif
     
    11201120            {
    11211121                mNormalGeo.moveTo (geometry().x(), geometry().y());
    1122 #ifdef VBOX_WITH_DEBUGGER_GUI
     1122#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    11231123                dbgAdjustRelativePos();
    11241124#endif
     
    15391539        tr ("Mount the Guest Additions installation image"));
    15401540
    1541 #ifdef VBOX_WITH_DEBUGGER_GUI
     1541#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    15421542    /* Debug actions */
    15431543
     
    15671567//    mDevicesMenu->setIcon (VBoxGlobal::iconSet (":/settings_16px.png"));
    15681568
    1569 #ifdef VBOX_WITH_DEBUGGER_GUI
     1569#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    15701570    if (vboxGlobal().isDebuggerEnabled())
    15711571        mDbgMenu->setTitle (tr ("De&bug"));
     
    33913391void VBoxConsoleWnd::dbgShowStatistics()
    33923392{
    3393 #ifdef VBOX_WITH_DEBUGGER_GUI
     3393#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    33943394    if (dbgCreated())
    33953395        DBGGuiShowStatistics (dbg_gui);
     
    34023402void VBoxConsoleWnd::dbgShowCommandLine()
    34033403{
    3404 #ifdef VBOX_WITH_DEBUGGER_GUI
     3404#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    34053405    if (dbgCreated())
    34063406        DBGGuiShowCommandLine (dbg_gui);
     
    34083408}
    34093409
    3410 #ifdef VBOX_WITH_DEBUGGER_GUI
     3410#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    34113411
    34123412/**
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp

    r12010 r12171  
    44694469
    44704470    vm_render_mode_str = 0;
    4471 #ifdef VBOX_WITH_DEBUGGER_GUI
     4471#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    44724472#ifdef VBOX_WITH_DEBUGGER_GUI_MENU
    44734473    dbg_enabled = true;
     
    45144514                vm_render_mode_str = qApp->argv() [i];
    45154515        }
    4516 #ifdef VBOX_WITH_DEBUGGER_GUI
     4516#if defined(VBOX_WITH_DEBUGGER_GUI) && 0
    45174517        else if (!::strcmp (arg, "-dbg"))
    45184518        {
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette