]> git.saurik.com Git - wxWidgets.git/commitdiff
DoGetSize overrides
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 19 May 2003 18:33:36 +0000 (18:33 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 19 May 2003 18:33:36 +0000 (18:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/dcclient.h

index 9bda493d6f1d7b3e68400231cf7ccc56ea7fd17d..02407e06023baf1dec88d77b075d0724ded2411b 100644 (file)
@@ -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