Mercurial > pidgin.yaz
view plugins/iconaway.c @ 3526:2ce20ac05732
[gaim-migrate @ 3599]
this should fix a segfault on signing off (or maybe at other random times)(thanks robot101)
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Tue, 17 Sep 2002 01:48:59 +0000 |
parents | d33ec392a5e1 |
children | cd938f18f3f8 |
line wrap: on
line source
#include "../config.h" #include "gaim.h" #include <gtk/gtk.h> void *handle; extern GtkWidget *imaway; extern GtkWidget *blist; extern GtkWidget *all_chats; extern GtkWidget *all_convos; #ifdef USE_APPLET extern void applet_destroy_buddy(); #endif void iconify_windows(struct gaim_connection *gc, char *state, char *message, void *data) { if (!imaway || !gc->away) return; gtk_window_iconify(GTK_WINDOW(imaway)); hide_buddy_list(); if (all_convos) gtk_window_iconify(GTK_WINDOW(all_convos)); if (all_chats) gtk_window_iconify(GTK_WINDOW(all_chats)); } char *gaim_plugin_init(GModule *h) { handle = h; gaim_signal_connect(handle, event_away, iconify_windows, NULL); return NULL; } char *name() { return "Iconify On Away"; } char *description() { return "Iconifies the away box and the buddy list when you go away."; }