diff options
author | Boris Barbulovski <bbarbulovski@gmail.com> | 2015-09-22 14:36:02 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2015-10-14 08:59:00 -0400 |
commit | b1f8a45bfee563f6aa9969c6b01f6c831a85e39a (patch) | |
tree | 65da49ff9c83dc06fa39786a08e8fe8d73ba0cb7 /scripts/kconfig/qconf.cc | |
parent | 8328447af88eaab1db29852cb3e4a71cda5bd887 (diff) |
Port xconfig to Qt5 - Use QMainWindow, QToolBar
Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 0e18a9ccf288..199934c5cdbf 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | #include <qglobal.h> | 6 | #include <qglobal.h> |
7 | 7 | ||
8 | #include <q3mainwindow.h> | 8 | #include <QMainWindow> |
9 | #include <q3vbox.h> | 9 | #include <q3vbox.h> |
10 | #include <q3valuelist.h> | 10 | #include <q3valuelist.h> |
11 | #include <q3textbrowser.h> | 11 | #include <q3textbrowser.h> |
@@ -1303,7 +1303,7 @@ ConfigMainWindow::ConfigMainWindow(void) | |||
1303 | configList->setFocus(); | 1303 | configList->setFocus(); |
1304 | 1304 | ||
1305 | menu = menuBar(); | 1305 | menu = menuBar(); |
1306 | toolBar = new Q3ToolBar("Tools", this); | 1306 | toolBar = new QToolBar("Tools", this); |
1307 | 1307 | ||
1308 | backAction = new Q3Action("Back", QPixmap(xpm_back), _("Back"), 0, this); | 1308 | backAction = new Q3Action("Back", QPixmap(xpm_back), _("Back"), 0, this); |
1309 | connect(backAction, SIGNAL(activated()), SLOT(goBack())); | 1309 | connect(backAction, SIGNAL(activated()), SLOT(goBack())); |