X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..a6cb8040a8f73935791c44b8f1b8ac4711cb84f6:/src/palmos/dcclient.cpp diff --git a/src/palmos/dcclient.cpp b/src/palmos/dcclient.cpp index ae1340f40e..e7a6817db9 100644 --- a/src/palmos/dcclient.cpp +++ b/src/palmos/dcclient.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "dcclient.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -42,14 +38,14 @@ struct WXDLLEXPORT wxPaintDCInfo { wxPaintDCInfo(wxWindow *win, wxDC *dc) { - hwnd = win->GetHWND(); - hdc = dc->GetHDC(); - count = 1; + handle = win->GetWinHandle(); + hdc = dc->GetHDC(); + count = 1; } - WXHWND hwnd; // window for this DC - WXHDC hdc; // the DC handle - size_t count; // usage count + WXWINHANDLE handle; // window for this DC + WXHDC hdc; // the DC handle + size_t count; // usage count }; #include "wx/arrimpl.cpp"