Update of /cvsroot/gaim/gaim/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv15123/plugins
Modified Files:
chatlist.c idle.c
Log Message:
remove deprecated gtk calls, gtk2-ify log viewer, gtk2-ify jabber vcard
dialog, and probably a cleanup or two I forgot about.
Index: chatlist.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/chatlist.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- chatlist.c 17 Feb 2003 15:21:58 -0000 1.24
+++ chatlist.c 2 Mar 2003 19:21:15 -0000 1.25
@@ -4,6 +4,12 @@
#define GAIM_PLUGINS
#endif
+#ifdef GTK_DISABLE_DEPRECATED
+#undef GTK_DISABLE_DEPRECATED
+#endif
+
+#define GTK_ENABLE_BROKEN
+
#include "pixmaps/refresh.xpm"
#include "pixmaps/gnome_add.xpm"
#include "pixmaps/gnome_remove.xpm"
Index: idle.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/idle.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- idle.c 24 Feb 2003 00:29:51 -0000 1.10
+++ idle.c 2 Mar 2003 19:21:15 -0000 1.11
@@ -60,7 +60,7 @@
opt = gtk_menu_item_new_with_label(g->username);
g_signal_connect(GTK_OBJECT(opt), "activate",
G_CALLBACK(sel_gc), g);
- gtk_menu_append(GTK_MENU(menu), opt);
+ gtk_menu_shell_append(GTK_MENU_SHELL(menu), opt);
gtk_widget_show(opt);
c = g_slist_next(c);
}
|