From: Sean E. <sea...@us...> - 2002-05-03 19:49:27
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv21134/plugins Modified Files: filectl.c Log Message: Ari Pollack did this. Index: filectl.c =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/filectl.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- filectl.c 16 Mar 2002 05:57:26 -0000 1.9 +++ filectl.c 3 May 2002 19:49:24 -0000 1.10 @@ -1,5 +1,6 @@ -#define GAIM_PLUGINS +#include "config.h" #include "gaim.h" +#include "applet.h" #include <gtk/gtk.h> #include <stdlib.h> @@ -88,6 +89,10 @@ a.name[0] = 0; do_away_message(NULL, &a); free(arg1); + } else if (!strncasecmp(command, "hide", 4)) { + hide_buddy_list(); + } else if (!strncasecmp(command, "unhide", 6)) { + unhide_buddy_list(); } else if (!strncasecmp(command, "back", 4)) { do_im_back(); } else if (!strncasecmp(command, "quit", 4)) { |