]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
add check for wxUSE_AUTOID_MANAGEMENT being defined
[wxWidgets.git] / include / wx / dc.h
index 66901ddb6ef5d52c47d3d75935e767e4d7bb098a..ab3b1c9ccf3e3c8c4b20b1623a2dfd885a683fb6 100644 (file)
@@ -1,7 +1,7 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        wx/dc.h
 // Purpose:     wxDC class
-// Author:      Vadim Zeitlin
+// Author:      Vadim Zeitlin 
 // Modified by:
 // Created:     05/25/99
 // RCS-ID:      $Id$
@@ -187,7 +187,8 @@ public:
     virtual void DoGetSize(int *width, int *height) const = 0;
     void GetSize(int *width, int *height) const
     {
-        return DoGetSize(width, height);
+        DoGetSize(width, height);
+        return ;
     }
 
     wxSize GetSize() const
@@ -565,7 +566,7 @@ public:
     const wxDCImpl *GetImpl() const
         { return m_pimpl; }
 
-    wxWindow *GetWindow()
+    wxWindow *GetWindow() const
         { return m_pimpl->GetWindow(); }
 
     bool IsOk() const