X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dbf858b5d69f53efd3950cae99322f54355aa983..0e1399b3929661889071bb0e0f77d440b8d69b98:/include/wx/gtk1/dcmemory.h diff --git a/include/wx/gtk1/dcmemory.h b/include/wx/gtk1/dcmemory.h index be4a0ffa42..ea4a1f1571 100644 --- a/include/wx/gtk1/dcmemory.h +++ b/include/wx/gtk1/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 GetSize( int *width, int *height ) const; - private: - friend wxPaintDC; - wxBitmap m_selected; + // implementation + + wxBitmap m_selected; }; #endif