[PATCH 17/19] Kconfig I18N: xconfig: symbol fix

From: Egry Gábor
Date: Wed Jul 13 2005 - 12:39:25 EST



I18N support for symbol names are unnecessary.

Signed-off-by: Egry Gabor <gaboregry@xxxxxxxxxxx>
---

scripts/kconfig/qconf.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff -puN scripts/kconfig/qconf.cc~kconfig-i18n-17-qconfig-symbol-fix scripts/kconfig/qconf.cc
--- linux-2.6.13-rc3-i18n-kconfig/scripts/kconfig/qconf.cc~kconfig-i18n-17-qconfig-symbol-fix 2005-07-13 18:32:19.000000000 +0200
+++ linux-2.6.13-rc3-i18n-kconfig-gabaman/scripts/kconfig/qconf.cc 2005-07-13 18:32:19.000000000 +0200
@@ -1038,12 +1038,12 @@ void ConfigMainWindow::setHelp(QListView
head += "</b></big>";
if (sym->name) {
head += " (";
- head += print_filter(_(sym->name));
+ head += print_filter(sym->name);
head += ")";
}
} else if (sym->name) {
head += "<big><b>";
- head += print_filter(_(sym->name));
+ head += print_filter(sym->name);
head += "</b></big>";
}
head += "<br><br>";
_


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/