From 144ce44cb73e9492bd48557da72ea3792114951c Mon Sep 17 00:00:00 2001 From: vng Date: Sun, 24 Apr 2011 18:32:56 +0300 Subject: [PATCH] - Fix debug compilation errors. - Restore Show All button. --- qt/mainwindow.cpp | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index 65821fb193..47e4ca3268 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -3,6 +3,16 @@ #include "slider_ctrl.hpp" #include "about.hpp" +#ifdef DEBUG +#include "info_dialog.hpp" +#include "update_dialog.hpp" +#include "preferences_dialog.hpp" +#include "classificator_tree.hpp" +#include "guide_page.hpp" + +#include "../indexer/classificator.hpp" +#endif + #include "../defines.hpp" #include "../map/settings.hpp" @@ -13,6 +23,10 @@ #include #include +#ifdef DEBUG +#include +#endif + #define IDM_ABOUT_DIALOG 1001 namespace qt @@ -203,8 +217,8 @@ void MainWindow::CreateNavigationBar() // { tr("Right"), ":/navig64/right.png", SLOT(MoveRight()) }, // { tr("Up"), ":/navig64/up.png", SLOT(MoveUp()) }, // { tr("Down"), ":/navig64/down.png", SLOT(MoveDown()) }, -// { tr("Show all"), ":/navig64/world.png", SLOT(ShowAll()) }, -// { QString(), 0, 0 }, + { QString(), 0, 0 }, + { tr("Show all"), ":/navig64/world.png", SLOT(ShowAll()) }, { tr("Scale +"), ":/navig64/plus.png", SLOT(ScalePlus()) } }; add_buttons(pBar, arr, ARRAY_SIZE(arr), m_pDrawWidget);