X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..ff1dadae388b2f408874b80251d64d16d9d46280:/include/wx/mac/carbon/dcclient.h diff --git a/include/wx/mac/carbon/dcclient.h b/include/wx/mac/carbon/dcclient.h index 8e01314084..def0ad4cc3 100644 --- a/include/wx/mac/carbon/dcclient.h +++ b/include/wx/mac/carbon/dcclient.h @@ -12,10 +12,6 @@ #ifndef _WX_DCCLIENT_H_ #define _WX_DCCLIENT_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "dcclient.h" -#endif - #include "wx/dc.h" //----------------------------------------------------------------------------- @@ -35,9 +31,10 @@ class WXDLLEXPORT wxWindowDC: public wxDC // Create a DC corresponding to a canvas wxWindowDC(wxWindow *win); - ~wxWindowDC(void); - virtual void DoGetSize( int *width, int *height ) const; + virtual ~wxWindowDC(void); + wxWindow *GetWindow() const { return m_window; } protected : + virtual void DoGetSize( int *width, int *height ) const; wxWindow *m_window; }; @@ -52,7 +49,9 @@ class WXDLLEXPORT wxClientDC: public wxWindowDC // Create a DC corresponding to a canvas wxClientDC(wxWindow *win); - ~wxClientDC(void); + virtual ~wxClientDC(void); + +protected: virtual void DoGetSize( int *width, int *height ) const; }; @@ -66,7 +65,9 @@ class WXDLLEXPORT wxPaintDC: public wxWindowDC // Create a DC corresponding to a canvas wxPaintDC(wxWindow *win); - ~wxPaintDC(void); + virtual ~wxPaintDC(void); + +protected: virtual void DoGetSize( int *width, int *height ) const; };