]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix after ownerdraw-refactor branch merge.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Jan 2010 14:15:12 +0000 (14:15 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Jan 2010 14:15:12 +0000 (14:15 +0000)
Don't use HDC in public headers, it may not be declared there. Use WXHDC
instead even if this means having ugly casts.

This fixed mingw32 compilation (see #11595).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/menuitem.h
src/msw/menuitem.cpp

index 38ad3ed2c68a9661d8514f84ea26736bb013d5f7..909a3ae5c90a4c5cec1529d54ec570ab7ea55dc7 100644 (file)
@@ -120,7 +120,7 @@ protected:
 
 private:
     // helper function for draw std menu check mark
-    void DrawStdCheckMark(HDC hdc, const RECT* rc, wxODStatus stat);
+    void DrawStdCheckMark(WXHDC hdc, const RECT* rc, wxODStatus stat);
 
 #endif // wxUSE_OWNER_DRAWN
 
index fb0369196d3c1dd9588f81a26992080d4cc18c14..8ebf138ace42cc51fe8c22d4f51ffd1651717c73 100644 (file)
@@ -1035,7 +1035,7 @@ bool wxMenuItem::OnDrawItem(wxDC& dc, const wxRect& rc,
     {
         if ( stat & wxODChecked )
         {
-            DrawStdCheckMark(hdc, &rcImg, stat);
+            DrawStdCheckMark((WXHDC)hdc, &rcImg, stat);
         }
     }
     else
@@ -1133,8 +1133,10 @@ void DrawColorCheckMark(HDC hdc, int x, int y, int cx, int cy, HDC hdcCheckMask,
 
 } // anonymous namespace
 
-void wxMenuItem::DrawStdCheckMark(HDC hdc, const RECT* rc, wxODStatus stat)
+void wxMenuItem::DrawStdCheckMark(WXHDC hdc_, const RECT* rc, wxODStatus stat)
 {
+    HDC hdc = (HDC)hdc_;
+
 #if wxUSE_UXTHEME
     wxUxThemeEngine* theme = MenuDrawData::GetUxThemeEngine();
     if ( theme )