From 5f965f0b4144c02be0f2237dfa32df4f1c7d800f Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 19 May 2003 18:33:36 +0000 Subject: [PATCH] DoGetSize overrides git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/dcclient.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/wx/mac/dcclient.h b/include/wx/mac/dcclient.h index 9bda493d6f..02407e0602 100644 --- a/include/wx/mac/dcclient.h +++ b/include/wx/mac/dcclient.h @@ -36,6 +36,9 @@ class WXDLLEXPORT wxWindowDC: public wxDC wxWindowDC(wxWindow *win); ~wxWindowDC(void); + virtual void DoGetSize( int *width, int *height ) const; + protected : + wxWindow *m_window; }; @@ -50,6 +53,7 @@ class WXDLLEXPORT wxClientDC: public wxWindowDC wxClientDC(wxWindow *win); ~wxClientDC(void); + virtual void DoGetSize( int *width, int *height ) const; }; class WXDLLEXPORT wxPaintDC: public wxWindowDC @@ -63,6 +67,7 @@ class WXDLLEXPORT wxPaintDC: public wxWindowDC wxPaintDC(wxWindow *win); ~wxPaintDC(void); + virtual void DoGetSize( int *width, int *height ) const; }; #endif -- 2.47.2