*** empty log message ***

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3235 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-08-02 04:44:01 +00:00
parent 4d194d6368
commit 54da4255a2
37 changed files with 1018 additions and 1078 deletions

View File

@@ -90,22 +90,15 @@ class WXDLLEXPORT wxWindowDC: public wxDC
virtual void DrawSpline( wxList *points );
private:
// VisualAge function hiding warning supression
void DrawEllipticArc (const wxPoint& pt, const wxSize& sz, double sa, double ea)
{ wxDC::DrawEllipticArc(pt, sz, sa, ea); }
void DrawPoint( wxPoint& point )
{ wxDC::DrawPoint(point); }
void DrawSpline( long x1, long y1, long x2, long y2, long x3, long y3 )
{ DrawSpline(x1, y1, x2, y2, x3, y3); }
void DrawSpline( int n, wxPoint points[] )
{ DrawSpline(n, points); }
void GetTextExtent( const wxString &string, long *width, long *height,
long *descent = NULL, long *externalLeading = NULL,
wxFont *theFont = NULL ) const
{ GetTextExtent( string, width, height, descent, externalLeading, theFont); };
// these next two are ridiculous! the only difference is the const
long GetCharWidth(void) const {return(GetCharWidth());};
long GetCharHeight(void) const {return(GetCharHeight());};
void DrawEllipticArc(const wxPoint& pt, const wxSize& sz,
double sa, double ea)
{ wxDC::DrawEllipticArc(pt, sz, sa, ea); };
void DrawPoint(wxPoint& pt)
{ wxDC:DrawPoint(pt); };
void DrawSpline(int n, wxPoint points[])
{ wxDC::DrawSpline(n, points); };
void DrawSpline(long x1, long y1, long x2, long y2, long x3, long y3)
{ wxDC::DrawSpline(x1, y1, x2, y2, x3, y3); };
};
//-----------------------------------------------------------------------------