From: Boris Barbulovski <bbarbulov...@gmail.com>

Signed-off-by: Boris Barbulovski <bbarbulov...@gmail.com>
Signed-off-by: Thiago Macieira <thiago.macie...@intel.com>
---
 scripts/kconfig/qconf.h  |  2 +-
 scripts/kconfig/qconf.cc | 20 ++++++++++----------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h
index 84b62f5..94e57bd 100644
--- a/scripts/kconfig/qconf.h
+++ b/scripts/kconfig/qconf.h
@@ -117,7 +117,7 @@ public:
        struct menu *rootEntry;
        QColorGroup disabledColorGroup;
        QColorGroup inactivedColorGroup;
-       Q3PopupMenu* headerPopup;
+       QMenu* headerPopup;
 
 private:
        int colMap[colNr];
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
index f4231d4..334000a 100644
--- a/scripts/kconfig/qconf.cc
+++ b/scripts/kconfig/qconf.cc
@@ -13,7 +13,7 @@
 #include <q3header.h>
 #include <QFileDialog>
 #include <q3dragobject.h>
-#include <q3popupmenu.h>
+#include <QMenu>
 
 #include <qapplication.h>
 #include <qdesktopwidget.h>
@@ -817,7 +817,7 @@ void ConfigList::contextMenuEvent(QContextMenuEvent *e)
                if (!headerPopup) {
                        QAction *action;
 
-                       headerPopup = new Q3PopupMenu(this);
+                       headerPopup = new QMenu(this);
                        action = new QAction(_("Show Name"), this);
                          action->setToggleAction(TRUE);
                          connect(action, SIGNAL(toggled(bool)),
@@ -1387,32 +1387,32 @@ ConfigMainWindow::ConfigMainWindow(void)
        fullViewAction->addTo(toolBar);
 
        // create config menu
-       Q3PopupMenu* config = new Q3PopupMenu(this);
+       QMenu* config = new QMenu(this);
        menu->insertItem(_("&File"), config);
        loadAction->addTo(config);
        saveAction->addTo(config);
        saveAsAction->addTo(config);
-       config->insertSeparator();
+       config->addSeparator();
        quitAction->addTo(config);
 
        // create edit menu
-       Q3PopupMenu* editMenu = new Q3PopupMenu(this);
+       QMenu* editMenu = new QMenu(this);
        menu->insertItem(_("&Edit"), editMenu);
        searchAction->addTo(editMenu);
 
        // create options menu
-       Q3PopupMenu* optionMenu = new Q3PopupMenu(this);
+       QMenu* optionMenu = new QMenu(this);
        menu->insertItem(_("&Option"), optionMenu);
        showNameAction->addTo(optionMenu);
        showRangeAction->addTo(optionMenu);
        showDataAction->addTo(optionMenu);
-       optionMenu->insertSeparator();
+       optionMenu->addSeparator();
        optGroup->addTo(optionMenu);
-       optionMenu->insertSeparator();
+       optionMenu->addSeparator();
 
        // create help menu
-       Q3PopupMenu* helpMenu = new Q3PopupMenu(this);
-       menu->insertSeparator();
+       QMenu* helpMenu = new QMenu(this);
+       menu->addSeparator();
        menu->insertItem(_("&Help"), helpMenu);
        showIntroAction->addTo(helpMenu);
        showAboutAction->addTo(helpMenu);
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to