typo in dcclient.cpp corrected (wxUSE_SPLINE => wxUSE_SPLINES)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-05-15 12:47:50 +00:00
parent 5092b3add7
commit d54e425674
4 changed files with 6 additions and 2 deletions

View File

@ -96,7 +96,9 @@ public:
virtual void DestroyClippingRegion();
virtual void DoSetClippingRegionAsRegion( const wxRegion &region );
#if wxUSE_SPLINES
virtual void DoDrawSpline( wxList *points );
#endif
// Resolution in pixels per logical inch
virtual wxSize GetPPI() const;

View File

@ -96,7 +96,9 @@ public:
virtual void DestroyClippingRegion();
virtual void DoSetClippingRegionAsRegion( const wxRegion &region );
#if wxUSE_SPLINES
virtual void DoDrawSpline( wxList *points );
#endif
// Resolution in pixels per logical inch
virtual wxSize GetPPI() const;

View File

@ -1159,7 +1159,7 @@ int wxWindowDC::GetDepth() const
return -1;
}
#if wxUSE_SPLINE
#if wxUSE_SPLINES
// ----------------------------------- spline code ----------------------------------------
void wx_quadratic_spline(double a1, double b1, double a2, double b2,

View File

@ -1159,7 +1159,7 @@ int wxWindowDC::GetDepth() const
return -1;
}
#if wxUSE_SPLINE
#if wxUSE_SPLINES
// ----------------------------------- spline code ----------------------------------------
void wx_quadratic_spline(double a1, double b1, double a2, double b2,