# HG changeset patch # User Luke Schierer # Date 1074573337 0 # Node ID 0d3e75a09f1505a2e8a5feff0459cdec7b8e1ed1 # Parent 596c64a2a2d0d79bad38d3b568d1355a2453ac91 [gaim-migrate @ 8855] (23:35:28) deryni: "Those of you in Windows-land can rejoice and see cursors. But Paco-Paco will still tell you your OS sucks." (23:35:47) Paco-Paco: you and your OS suck (23:35:52) Paco-Paco: that would be better committer: Tailor Script diff -r 596c64a2a2d0 -r 0d3e75a09f15 src/win32/win32dep.c --- a/src/win32/win32dep.c Tue Jan 20 02:51:14 2004 +0000 +++ b/src/win32/win32dep.c Tue Jan 20 04:35:37 2004 +0000 @@ -110,13 +110,13 @@ return TRUE; } -static void halt_flash_filter(GtkWidget *widget, GdkEventFocus *event, gpointer data) { +static int halt_flash_filter(GtkWidget *widget, GdkEventFocus *event, gpointer data) { if(MyFlashWindowEx) { HWND hWnd = data; FLASHWINFO info; if(!IsWindow(hWnd)) - return; + return 0; memset(&info, 0, sizeof(FLASHWINFO)); info.cbSize = sizeof(FLASHWINFO); info.hwnd = hWnd; @@ -134,6 +134,7 @@ gaim_debug(GAIM_DEBUG_INFO, "wgaim", "done\n"); g_free(finfo); } + return 0; } static void load_winver_specific_procs(void) {