diff pidgin/gtkmain.c @ 18160:428bea8235cb

Use g_set_application_name() so unnamed dialogs get given a name, my dialogs were titled '<unknown>' before this change. References #1672 - but does not give specific titles to the dialogs mentioned there.
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 17 Jun 2007 15:46:42 +0000
parents 00cec200ec58
children f54f83b20929
line wrap: on
line diff
--- a/pidgin/gtkmain.c	Sun Jun 17 15:29:42 2007 +0000
+++ b/pidgin/gtkmain.c	Sun Jun 17 15:46:42 2007 +0000
@@ -474,7 +474,7 @@
 
 	/* This is the first Glib function call. Make sure to initialize GThread bfeore then */
 	g_thread_init(NULL);
-	
+
 #ifdef ENABLE_NLS
 	bindtextdomain(PACKAGE, LOCALEDIR);
 	bind_textdomain_codeset(PACKAGE, "UTF-8");
@@ -855,6 +855,7 @@
 	winpidgin_post_init();
 #endif
 
+	g_set_application_name(_("Pidgin"));
 	gtk_main();
 
 #ifdef HAVE_SIGNAL_H