On Tuesday 24 August 2004 10:14, Thomas Heidemann wrote: > Hi list, > > I recognized an encoding error in kde-gui of licq (CVS HEAD, self > compiled, german translation). > When I switch to "Not available" the statusbar displays some stange > characters (see screenshot below). > The same characters occur in the window title when setting the N/A > message. > > SuSE 9.1 > KDE3.3 > qt3-3.3.3-6 > gcc-3.3.3-41 > > Thomas
Can you please try the attached patch on the daemon, recompile, install and tell me if it works for you? Thomas -- Just because the message may never be received does not mean it is not worth sending.
Index: include/gettext.h =================================================================== RCS file: /cvsroot/licq/licq/include/gettext.h,v retrieving revision 1.2 diff -u -r1.2 gettext.h --- include/gettext.h 26 Jan 2004 15:38:16 -0000 1.2 +++ include/gettext.h 24 Aug 2004 12:13:15 -0000 @@ -24,8 +24,8 @@ /* Get declarations of GNU message catalog functions. */ # include <libintl.h> -#define tr(String) gettext(String) -#define tr_NOOP(String) gettext_noop(String) +#define tr(String) ugettext(String) +#define tr_NOOP(String) ugettext_noop(String) #else