Am Freitag 08 Oktober 2004 22:37 schrieb Nicolas Goutte: > CVS commit by goutte: > > TEST: test if using I18N_NOOP would fix the problem (probably not). > > > M +2 -2 kedittoolbar.cpp 1.101 > > > --- kdelibs/kdeui/kedittoolbar.cpp #1.100:1.101 > @@ -46,6 +46,6 @@ > #include > > -#define LINESEPARATORSTRING i18n("--- line separator ---") > -#define SEPARATORSTRING i18n("--- separator ---") > +#define LINESEPARATORSTRING I18N_NOOP("--- line separator ---") > +#define SEPARATORSTRING I18N_NOOP("--- separator ---") > > static void dump_xml(const QDomDocument& doc) Try: static char *dummy_string = I18N_NOOP("--- line seperator ---"); #define LINESEPARATORSTRING i18n(dummy_string); Greetings, Stephan