]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed compile error on Wine due to type mismatch
authorJulian Smart <julian@anthemion.co.uk>
Sun, 12 Nov 2006 17:58:27 +0000 (17:58 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 12 Nov 2006 17:58:27 +0000 (17:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/treectrl.cpp

index 024af8d6eb949ef5fde1752b0dda477bb8feda60..92dc2fce7d58ffbe704492331d45b9f3593d22f0 100644 (file)
@@ -659,7 +659,7 @@ bool wxTreeCtrl::Create(wxWindow *parent,
     if ( !CreateControl(parent, id, pos, size, style, validator, name) )
         return false;
 
-    DWORD exStyle = 0;
+    WXDWORD exStyle = 0;
     DWORD wstyle = MSWGetStyle(m_windowStyle, & exStyle);
     wstyle |= WS_TABSTOP | TVS_SHOWSELALWAYS;