diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-11-02 11:59:57 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-12-08 23:31:29 +0900 |
commit | f463269fb940d2a4259169b1e87aab8d259a9ec4 (patch) | |
tree | 01563e4d8baee48a057474937a31fcac994af350 /scripts | |
parent | 98ebea7ba891569c3678c5cd2fd1960098e84f4e (diff) | |
download | linux-f463269fb940d2a4259169b1e87aab8d259a9ec4.tar.gz linux-f463269fb940d2a4259169b1e87aab8d259a9ec4.tar.bz2 linux-f463269fb940d2a4259169b1e87aab8d259a9ec4.zip |
kconfig: qconf: show Qt version in the About dialog
You can get the Qt version by running "pkg-config --modversion Qt5Core"
or something, but this might be useful to get the runtime Qt version
more easily. Go to the menu "Help" -> "About", then you can see it.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/qconf.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index cbe749b44b1a..d000869b787c 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1799,10 +1799,13 @@ void ConfigMainWindow::showIntro(void) void ConfigMainWindow::showAbout(void) { static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n" - "Copyright (C) 2015 Boris Barbulovski <bbarbulovski@gmail.com>.\n\n" - "Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n"; + "Copyright (C) 2015 Boris Barbulovski <bbarbulovski@gmail.com>.\n" + "\n" + "Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n" + "\n" + "Qt Version: "; - QMessageBox::information(this, "qconf", str); + QMessageBox::information(this, "qconf", str + qVersion()); } void ConfigMainWindow::saveSettings(void) |