X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad0ac642d5764497804bee2caad4fc1f20fc6cea..f94a81c084696210418b8709e8ab649a18465fa6:/src/msw/dc.cpp?ds=sidebyside diff --git a/src/msw/dc.cpp b/src/msw/dc.cpp index f126f133d2..74960b6ef4 100644 --- a/src/msw/dc.cpp +++ b/src/msw/dc.cpp @@ -17,10 +17,6 @@ // headers // --------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "dc.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -1003,7 +999,7 @@ void wxDC::DoDrawSpline(wxList *points) wxASSERT_MSG( points, wxT("NULL pointer to spline points?") ); const size_t n_points = points->GetCount(); - wxASSERT_MSG( n > 2 , wxT("incomplete list of spline points?") ); + wxASSERT_MSG( n_points > 2 , wxT("incomplete list of spline points?") ); const size_t n_bezier_points = n_points * 3 + 1; POINT *lppt = (POINT *)malloc(n_bezier_points*sizeof(POINT));