X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/83626bfa72bd7f0147392818846242a846d12063..a3168196950059931fde30e568a788ab358428ef:/src/msw/dcclient.cpp diff --git a/src/msw/dcclient.cpp b/src/msw/dcclient.cpp index 4c6b19b03b..a7becdbf5c 100644 --- a/src/msw/dcclient.cpp +++ b/src/msw/dcclient.cpp @@ -13,11 +13,6 @@ #pragma implementation "dcclient.h" #endif -#ifdef __GNUG__ -#pragma implementation -#pragma implementation "dcclient.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -99,8 +94,8 @@ static PAINTSTRUCT g_paintStruct; // Don't call Begin/EndPaint if it's already been called: // for example, if calling a base class OnPaint. -WXHDC wxPaintDC::ms_PaintHDC = 0; -uint wxPaintDC::ms_PaintCount = 0; // count of ms_PaintHDC usage +WXHDC wxPaintDC::ms_PaintHDC = 0; +size_t wxPaintDC::ms_PaintCount = 0; // count of ms_PaintHDC usage wxPaintDC::wxPaintDC(wxWindow *canvas) { @@ -132,7 +127,7 @@ wxPaintDC::~wxPaintDC() m_hDC = NULL; ms_PaintHDC = NULL; } - //else: ms_PaintHDC still in use + else { }//: ms_PaintHDC still in use } }