user32-FindWindowEx: Mark bug 27282 as fixed.

This commit is contained in:
Sebastian Lackner 2014-11-12 18:04:49 +01:00
parent ed7e1530b5
commit a9b0616fc8
3 changed files with 6 additions and 1 deletions

View File

@ -39,13 +39,14 @@ Wine. All those differences are also documented on the
Included bug fixes and improvements
===================================
**Bugfixes and features included in the next upcoming release [17]:**
**Bugfixes and features included in the next upcoming release [18]:**
* Add stub for NtSetLdtEntries/ZwSetLdtEntries ([Wine Bug #26268](https://bugs.winehq.org/show_bug.cgi?id=26268))
* Add stubs for vectored continue handler ([Wine Bug #30572](https://bugs.winehq.org/show_bug.cgi?id=30572))
* Allow NULL pointer for optional arguments of D3DXIntersectTri ([Wine Bug #35133](https://bugs.winehq.org/show_bug.cgi?id=35133))
* Allow selection of audio device for PulseAudio backend
* Avoid crashing when broken app tries to release surface although refcount is zero ([Wine Bug #18477](https://bugs.winehq.org/show_bug.cgi?id=18477))
* Avoid sending window messages in FindWindowExW ([Wine Bug #27282](https://bugs.winehq.org/show_bug.cgi?id=27282))
* CoWaitForMultipleHandles shouldn't process window events when APC calls are queued ([Wine Bug #32568](https://bugs.winehq.org/show_bug.cgi?id=32568))
* Emulate access to KI_USER_SHARED_DATA kernel page on x86_64 ([Wine Bug #33849](https://bugs.winehq.org/show_bug.cgi?id=33849))
* Exception during start of fr-043 caused by missing DXTn support ([Wine Bug #37391](https://bugs.winehq.org/show_bug.cgi?id=37391))

View File

@ -1671,6 +1671,9 @@ user32-Dialog_Paint_Event.ok:
# | Included patches:
# | * Avoid sending window messages in FindWindowExW. [by Sebastian Lackner]
# |
# | This patchset fixes the following Wine bugs:
# | * [#27282] Avoid sending window messages in FindWindowExW
# |
# | Modified files:
# | * dlls/user32/tests/win.c, dlls/user32/win.c
# |

View File

@ -1,3 +1,4 @@
Author: Sebastian Lackner
Subject: Avoid sending window messages in FindWindowExW.
Revision: 1
Fixes: [27282] Avoid sending window messages in FindWindowExW