diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-28 11:59:32 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-28 11:59:32 +0000 |
commit | 417e240abb08caf6f8b3bf282d2ded32464633f6 (patch) | |
tree | da3848ca1bdcdeb009558ac9a69f6dc7a2b7e46c /scripts/kconfig/qconf.cc | |
parent | 10be1a787f02b388676ef4ddf674d7244cbbe6e3 (diff) | |
download | busybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.tar.gz busybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.tar.bz2 busybox-w32-417e240abb08caf6f8b3bf282d2ded32464633f6.zip |
Remove 'busybox' word from configuration programs
(based on experience of adapting it to uclibc).
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 605b02593..2a189c18e 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -1299,7 +1299,7 @@ void ConfigMainWindow::closeEvent(QCloseEvent* e) | |||
1299 | 1299 | ||
1300 | void ConfigMainWindow::showIntro(void) | 1300 | void ConfigMainWindow::showIntro(void) |
1301 | { | 1301 | { |
1302 | static char str[] = "Welcome to the qconf graphical busybox configuration tool for Linux.\n\n" | 1302 | static char str[] = "Welcome to the qconf graphical configuration tool.\n\n" |
1303 | "For each option, a blank box indicates the feature is disabled, a check\n" | 1303 | "For each option, a blank box indicates the feature is disabled, a check\n" |
1304 | "indicates it is enabled, and a dot indicates that it is to be compiled\n" | 1304 | "indicates it is enabled, and a dot indicates that it is to be compiled\n" |
1305 | "as a module. Clicking on the box will cycle through the three states.\n\n" | 1305 | "as a module. Clicking on the box will cycle through the three states.\n\n" |
@@ -1316,8 +1316,7 @@ void ConfigMainWindow::showIntro(void) | |||
1316 | 1316 | ||
1317 | void ConfigMainWindow::showAbout(void) | 1317 | void ConfigMainWindow::showAbout(void) |
1318 | { | 1318 | { |
1319 | static char str[] = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\n" | 1319 | static char str[] = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n"; |
1320 | "Bug reports and feature request can also be entered at http://bugs.busybox.net/\n"; | ||
1321 | 1320 | ||
1322 | QMessageBox::information(this, "qconf", str); | 1321 | QMessageBox::information(this, "qconf", str); |
1323 | } | 1322 | } |