blob: d0cdc05a0cbeb5996f8b62f5fb870a2171ed9979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Index: qt/qtgettext.h
===================================================================
--- qt/qtgettext.h (revision 4453)
+++ qt/qtgettext.h (revision 4454)
@@ -57,6 +57,9 @@
#define N_(String) (String)
#endif /* gettext_noop */
+#else /* ENABLE_NLS */
+
+#define mygettext(String) QString::fromLocal8Bit( (const char *)(String) )
#endif /* ENABLE_NLS */
#endif /* Not def: _QT_GETTEXT_H_ */
|