long *externalLeading = (long *) NULL,
wxFont *theFont = (wxFont *) NULL ) const;
- void GetSize(int* width, int* height) const;
- void GetSizeMM(int *width, int *height) const;
+ void DoGetSize(int* width, int* height) const;
+ void DoGetSizeMM(int *width, int *height) const;
// Resolution in pixels per logical inch
wxSize GetPPI(void) const;
wxMemoryDC( wxDC *dc ); // Create compatible DC
~wxMemoryDC();
virtual void SelectObject( const wxBitmap& bitmap );
- void GetSize( int *width, int *height ) const;
+ void DoGetSize( int *width, int *height ) const;
// implementation
wxMemoryDC( wxDC *dc ); // Create compatible DC
~wxMemoryDC();
virtual void SelectObject( const wxBitmap& bitmap );
- void GetSize( int *width, int *height ) const;
+ void DoGetSize( int *width, int *height ) const;
// implementation
wxDC::SetDeviceOrigin( x, h-y );
}
-void wxPostScriptDC::GetSize(int* width, int* height) const
+void wxPostScriptDC::DoGetSize(int* width, int* height) const
{
wxPaperSize id = m_printData.GetPaperId();
}
}
-void wxPostScriptDC::GetSizeMM(int *width, int *height) const
+void wxPostScriptDC::DoGetSizeMM(int *width, int *height) const
{
wxPaperSize id = m_printData.GetPaperId();
}
}
-void wxMemoryDC::GetSize( int *width, int *height ) const
+void wxMemoryDC::DoGetSize( int *width, int *height ) const
{
if (m_selected.Ok())
{
}
}
-void wxMemoryDC::GetSize( int *width, int *height ) const
+void wxMemoryDC::DoGetSize( int *width, int *height ) const
{
if (m_selected.Ok())
{