Author: gadamopoulos
Date: Thu Jan 13 09:56:32 2011
New Revision: 50380
URL:
http://svn.reactos.org/svn/reactos?rev=50380&view=rev
Log:
[user32]
- Implement sending EVENT_SYSTEM_DIALOGSTART event. It will be used by rosautotest
Modified:
trunk/reactos/dll/win32/user32/windows/dialog.c
Modified: trunk/reactos/dll/win32/user32/windows/dialog.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/d…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/dialog.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/user32/windows/dialog.c [iso-8859-1] Thu Jan 13 09:56:32 2011
@@ -989,6 +989,7 @@
if (template.style & WS_VISIBLE && !(GetWindowLongPtrW( hwnd,
GWL_STYLE ) & WS_VISIBLE))
{
ShowWindow( hwnd, SW_SHOWNORMAL ); /* SW_SHOW doesn't always work */
+ IntNotifyWinEvent(EVENT_SYSTEM_DIALOGSTART, hwnd, OBJID_WINDOW, CHILDID_SELF,
0);
}
return hwnd;
}