/////////////////////////////////////////////////////////////////////////////
// Name: wx/dc.h
// Purpose: wxDC class
-// Author: Vadim Zeitlin
+// Author: Vadim Zeitlin
// Modified by:
// Created: 05/25/99
// RCS-ID: $Id$
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
const wxDCImpl *GetImpl() const
{ return m_pimpl; }
- wxWindow *GetWindow()
+ wxWindow *GetWindow() const
{ return m_pimpl->GetWindow(); }
bool IsOk() const