changeset 30359:129f973c38b5

Fix a regression in 2.7.0 that caused window flashing not to work on Windows. The sad part is that this change has been sitting in my tree for a couple months. :( Fixes #11842
author Daniel Atallah <daniel.atallah@gmail.com>
date Thu, 13 May 2010 22:45:19 +0000
parents cd857e9b7281
children eafb928fe614
files ChangeLog.win32 pidgin/win32/gtkwin32dep.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog.win32	Thu May 13 22:05:59 2010 +0000
+++ b/ChangeLog.win32	Thu May 13 22:45:19 2010 +0000
@@ -1,4 +1,6 @@
 version 2.7.1 (??/??/????):
+	* Fix a regression introduced in 2.7.0 that caused Window Flashing not
+	  to work.
 
 version 2.7.0 (05/12/2010):
 	* Updated GTK+ to 2.16.6
--- a/pidgin/win32/gtkwin32dep.c	Thu May 13 22:05:59 2010 +0000
+++ b/pidgin/win32/gtkwin32dep.c	Thu May 13 22:45:19 2010 +0000
@@ -327,6 +327,7 @@
 		info.dwFlags = FLASHW_ALL | FLASHW_TIMER;
 	} else
 		info.dwFlags = FLASHW_STOP;
+	FlashWindowEx(&info);
 	info.dwTimeout = 0;
 
 }