From: <mar...@us...> - 2006-08-08 01:02:59
|
Revision: 16670 Author: markhuetsch Date: 2006-08-07 18:02:56 -0700 (Mon, 07 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16670&view=rev Log Message: ----------- Eliminated calls to bindtextdomain() and bind_textdomain_codeset(), which have already and more appropriately been called in gtkmain.c. Also removed the definition of LOCALEDIR, which is no longer needed. Modified Paths: -------------- trunk/src/protocols/qq/Makefile.am trunk/src/protocols/qq/qq.c Modified: trunk/src/protocols/qq/Makefile.am =================================================================== --- trunk/src/protocols/qq/Makefile.am 2006-08-08 00:27:13 UTC (rev 16669) +++ trunk/src/protocols/qq/Makefile.am 2006-08-08 01:02:56 UTC (rev 16670) @@ -93,7 +93,6 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -DDATADIR=\"${datadir}\" \ - -DLOCALEDIR=\"${datadir}/locale\" \ -DVERSION=\"$(VERSION)\" \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ Modified: trunk/src/protocols/qq/qq.c =================================================================== --- trunk/src/protocols/qq/qq.c 2006-08-08 00:27:13 UTC (rev 16669) +++ trunk/src/protocols/qq/qq.c 2006-08-08 01:02:56 UTC (rev 16670) @@ -963,9 +963,6 @@ { GaimAccountOption *option; - bindtextdomain(PACKAGE, LOCALEDIR); - bind_textdomain_codeset(PACKAGE, "UTF-8"); - option = gaim_account_option_bool_new(_("Login in TCP"), "use_tcp", FALSE); prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |