From aef01a24d42ab9da3eda2f4f30ba6879a9ae5ef6 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Fri, 18 Jun 2010 10:19:25 +0200 Subject: [PATCH] user32: Add another flag to the TRACE(). --- dlls/user32/win.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/user32/win.c b/dlls/user32/win.c index 6800abd439d..4dd89621c69 100644 --- a/dlls/user32/win.c +++ b/dlls/user32/win.c @@ -1038,6 +1038,7 @@ static void dump_window_styles( DWORD style, DWORD exstyle ) if(exstyle & WS_EX_STATICEDGE) TRACE(" WS_EX_STATICEDGE"); if(exstyle & WS_EX_APPWINDOW) TRACE(" WS_EX_APPWINDOW"); if(exstyle & WS_EX_LAYERED) TRACE(" WS_EX_LAYERED"); + if(exstyle & WS_EX_LAYOUTRTL) TRACE(" WS_EX_LAYOUTRTL"); #define DUMPED_EX_STYLES \ (WS_EX_DLGMODALFRAME | \ @@ -1057,7 +1058,8 @@ static void dump_window_styles( DWORD style, DWORD exstyle ) WS_EX_CONTROLPARENT | \ WS_EX_STATICEDGE | \ WS_EX_APPWINDOW | \ - WS_EX_LAYERED) + WS_EX_LAYERED | \ + WS_EX_LAYOUTRTL) if(exstyle & ~DUMPED_EX_STYLES) TRACE(" %08lx", exstyle & ~DUMPED_EX_STYLES); TRACE("\n");