comparison pidgin/win32/gtkwin32dep.c @ 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 80e05718db82
children 80affba7ea0d
comparison
equal deleted inserted replaced
30358:cd857e9b7281 30359:129f973c38b5
325 if (SystemParametersInfo(SPI_GETFOREGROUNDFLASHCOUNT, 0, &flashCount, 0)) 325 if (SystemParametersInfo(SPI_GETFOREGROUNDFLASHCOUNT, 0, &flashCount, 0))
326 info.uCount = flashCount; 326 info.uCount = flashCount;
327 info.dwFlags = FLASHW_ALL | FLASHW_TIMER; 327 info.dwFlags = FLASHW_ALL | FLASHW_TIMER;
328 } else 328 } else
329 info.dwFlags = FLASHW_STOP; 329 info.dwFlags = FLASHW_STOP;
330 FlashWindowEx(&info);
330 info.dwTimeout = 0; 331 info.dwTimeout = 0;
331 332
332 } 333 }
333 334
334 void 335 void