Module: wine Branch: master Commit: aef01a24d42ab9da3eda2f4f30ba6879a9ae5ef6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=aef01a24d42ab9da3eda2f4f30... Author: Paul Vriens <Paul.Vriens.Wine(a)gmail.com> Date: Fri Jun 18 10:19:25 2010 +0200 user32: Add another flag to the TRACE(). --- dlls/user32/win.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/dlls/user32/win.c b/dlls/user32/win.c index 6800abd..4dd8962 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");