]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix (wxUniv/MSW)
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 26 Jun 2002 19:16:13 +0000 (19:16 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 26 Jun 2002 19:16:13 +0000 (19:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 08658aa717f0ea3c532f2c8715e20143f62d54d5..cc725c62808cba25578b5e7f5301148b6c27aba2 100644 (file)
@@ -3607,7 +3607,7 @@ bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange)
     if ( hWndPalChange != GetHWND() )
     {
         // check to see if we our our parents have a custom palette
-        wxWindow *win = this;
+        wxWindowMSW *win = this;
         while ( win && !win->HasCustomPalette() )
         {
             win = win->GetParent();
@@ -3656,7 +3656,7 @@ bool wxWindowMSW::HandleQueryNewPalette()
 
 #if wxUSE_PALETTE
     // check to see if we our our parents have a custom palette
-    wxWindow *win = this;
+    wxWindowMSW *win = this;
     while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent();
     if (win->HasCustomPalette()) {
         /* realize the palette to see whether redrawing is needed */