X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dbf858b5d69f53efd3950cae99322f54355aa983..c47d0f2eb1fa40b287ad8bd16b593e3f6daa96e4:/include/wx/gtk/dcmemory.h diff --git a/include/wx/gtk/dcmemory.h b/include/wx/gtk/dcmemory.h index be4a0ffa42..982dee3119 100644 --- a/include/wx/gtk/dcmemory.h +++ b/include/wx/gtk/dcmemory.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // RCS-ID: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -28,20 +28,20 @@ class wxMemoryDC; // wxMemoryDC //----------------------------------------------------------------------------- -class wxMemoryDC: public wxPaintDC +class wxMemoryDC: public wxWindowDC { DECLARE_DYNAMIC_CLASS(wxMemoryDC) - public: - wxMemoryDC(void); - wxMemoryDC( wxDC *dc ); // Create compatible DC - ~wxMemoryDC(void); - virtual void SelectObject( const wxBitmap& bitmap ); - void GetSize( int *width, int *height ) const; +public: + wxMemoryDC(); + wxMemoryDC( wxDC *dc ); // Create compatible DC + ~wxMemoryDC(); + virtual void SelectObject( const wxBitmap& bitmap ); + void DoGetSize( int *width, int *height ) const; - private: - friend wxPaintDC; - wxBitmap m_selected; + // implementation + + wxBitmap m_selected; }; #endif