From 1cf996175f84f5a5935f251f7a68b5b365803746 Mon Sep 17 00:00:00 2001 From: Michal Marek Date: Wed, 1 Sep 2010 17:39:27 +0200 Subject: [PATCH] --- yaml --- r: 220651 b: refs/heads/master c: 76a136c4a6bde90af8c899701cc1f0997af2f60a h: refs/heads/master i: 220649: 247039a8f697f55a9a06827251fda4a3b3050ac8 220647: 260516800efd7f0416b3f957d403c4cf447f5652 v: v3 --- [refs] | 2 +- trunk/scripts/kconfig/qconf.cc | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 006e6296321f..5b750703507e 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 133c5f7c10e4552ba41bcf03b9bda6c4e3413804 +refs/heads/master: 76a136c4a6bde90af8c899701cc1f0997af2f60a diff --git a/trunk/scripts/kconfig/qconf.cc b/trunk/scripts/kconfig/qconf.cc index 88d3874ca8f4..a04e4517ead1 100644 --- a/trunk/scripts/kconfig/qconf.cc +++ b/trunk/scripts/kconfig/qconf.cc @@ -1274,8 +1274,14 @@ ConfigMainWindow::ConfigMainWindow(void) char title[256]; QDesktopWidget *d = configApp->desktop(); - snprintf(title, sizeof(title), _("Linux Kernel v%s Configuration"), - getenv("KERNELVERSION")); + snprintf(title, sizeof(title), _("Linux Kernel v%s Configuration%s"), + getenv("KERNELVERSION"), +#if QT_VERSION < 0x040000 + " (Qt3)" +#else + "" +#endif + ); setCaption(title); width = configSettings->readNumEntry("/window width", d->width() - 64);