diff src/buddy.c @ 4393:bca8256a91a6

[gaim-migrate @ 4659] win32 fix for buddy win resize bug committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Wed, 22 Jan 2003 17:21:30 +0000
parents 5fb47ec9bfe4
children 868ee63e1fe8
line wrap: on
line diff
--- a/src/buddy.c	Wed Jan 22 15:49:16 2003 +0000
+++ b/src/buddy.c	Wed Jan 22 17:21:30 2003 +0000
@@ -2306,7 +2306,7 @@
 	}
 }
 
-static void configure_blist_window(GtkWidget *w, GdkEventConfigure *event, void *data) {
+static gboolean configure_blist_window(GtkWidget *w, GdkEventConfigure *event, gpointer data) {
 	/* unfortunately GdkEventConfigure ignores the window gravity, but  *
 	 * the only way we have of setting the position doesn't. we have to *
 	 * call get_position and get_size because they do pay attention to  *
@@ -2326,6 +2326,7 @@
 		blist_pos.height = event->height;
 		save_prefs();
 	}
+	return FALSE;
 }
 
 static void visibility_blist_window(GtkWidget *w, GdkEventVisibility *event, void *data) {