diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/qconf.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index afae613ae0d8..19811fcca6d6 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -5,6 +5,7 @@ | |||
5 | 5 | ||
6 | #include <qapplication.h> | 6 | #include <qapplication.h> |
7 | #include <qmainwindow.h> | 7 | #include <qmainwindow.h> |
8 | #include <qdesktopwidget.h> | ||
8 | #include <qtoolbar.h> | 9 | #include <qtoolbar.h> |
9 | #include <qlayout.h> | 10 | #include <qlayout.h> |
10 | #include <qvbox.h> | 11 | #include <qvbox.h> |
@@ -1275,7 +1276,7 @@ ConfigMainWindow::ConfigMainWindow(void) | |||
1275 | int x, y, width, height; | 1276 | int x, y, width, height; |
1276 | char title[256]; | 1277 | char title[256]; |
1277 | 1278 | ||
1278 | QWidget *d = configApp->desktop(); | 1279 | QDesktopWidget *d = configApp->desktop(); |
1279 | snprintf(title, sizeof(title), _("Linux Kernel v%s Configuration"), | 1280 | snprintf(title, sizeof(title), _("Linux Kernel v%s Configuration"), |
1280 | getenv("KERNELVERSION")); | 1281 | getenv("KERNELVERSION")); |
1281 | setCaption(title); | 1282 | setCaption(title); |