git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20669
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxWindowDC(wxWindow *win);
~wxWindowDC(void);
+ virtual void DoGetSize( int *width, int *height ) const;
+ protected :
+ wxWindow *m_window;
};
wxClientDC(wxWindow *win);
~wxClientDC(void);
+ virtual void DoGetSize( int *width, int *height ) const;
};
class WXDLLEXPORT wxPaintDC: public wxWindowDC
wxPaintDC(wxWindow *win);
~wxPaintDC(void);
+ virtual void DoGetSize( int *width, int *height ) const;
};
#endif