]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix for wxUniv/MSW after r54937 (#9866)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Aug 2008 23:01:28 +0000 (23:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Aug 2008 23:01:28 +0000 (23:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/private.h

index 0c5c99ed2c409110020fcb198dad75f626c8b191..ce738893b12e8e9bf739b0e3fe3488be656d003c 100644 (file)
@@ -904,17 +904,17 @@ inline bool wxStyleHasBorder(long style)
                      wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
 }
 
-inline long wxGetWindowExStyle(const wxWindow *win)
+inline long wxGetWindowExStyle(const wxWindowMSW *win)
 {
     return ::GetWindowLong(GetHwndOf(win), GWL_EXSTYLE);
 }
 
-inline bool wxHasWindowExStyle(const wxWindow *win, long style)
+inline bool wxHasWindowExStyle(const wxWindowMSW *win, long style)
 {
     return (wxGetWindowExStyle(win) & style) != 0;
 }
 
-inline long wxSetWindowExStyle(const wxWindow *win, long style)
+inline long wxSetWindowExStyle(const wxWindowMSW *win, long style)
 {
     return ::SetWindowLong(GetHwndOf(win), GWL_EXSTYLE, style);
 }