diff options
| author | Fritz Elfert <felfert@to.com> | 2001-03-24 17:35:57 +0000 |
|---|---|---|
| committer | Fritz Elfert <felfert@to.com> | 2001-03-24 17:35:57 +0000 |
| commit | 0f1ffc4064c073854fa51949cb8e9c44cf8885ee (patch) | |
| tree | 9695c15197cea023f6ea72593f87e88f39f2c1f4 /lib | |
| parent | 2bae21ae65a3f1de3bd39d62b1064f63688f2430 (diff) | |
| download | plptools-0f1ffc4064c073854fa51949cb8e9c44cf8885ee.tar.gz plptools-0f1ffc4064c073854fa51949cb8e9c44cf8885ee.tar.bz2 plptools-0f1ffc4064c073854fa51949cb8e9c44cf8885ee.zip | |
NLS fixes, kpsion config
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Enum.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -27,9 +27,7 @@ #include <config.h> #endif -#ifdef HAVE_LIBINTL_H #include <intl.h> -#endif #include <map> #include <string> @@ -309,7 +307,7 @@ name(#EnumName),defaultValue(initWith) */ template <typename E> inline ostream& operator << (ostream& out, const Enum<E> &e) { - return out << gettext(e.toString().c_str()); + return out << _(e.toString().c_str()); } #endif /* _ENUM_H_ */ |
