]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dc.cpp
added "access" parameter to wxFile::Create and Open. The default value is
[wxWidgets.git] / src / gtk / dc.cpp
index b50ade747a938b27d2eb14055abdda594e191795..faba4faab6364825c06ec9e87b3bcc02eeca0381 100644 (file)
@@ -136,11 +136,17 @@ void wxDC::DrawLines( wxList *list, long xoffset, long yoffset )
 void wxDC::DrawSpline( long x1, long y1, long x2, long y2, long x3, long y3 )
 {
   wxList list;
-  list.DeleteContents(TRUE);
   list.Append( (wxObject*)new wxPoint(x1, y1) );
   list.Append( (wxObject*)new wxPoint(x2, y2) );
   list.Append( (wxObject*)new wxPoint(x3, y3) );
   DrawSpline(&list);
+  wxNode *node = list.First();
+  while (node)
+  {
+    wxPoint *p = (wxPoint*)node->Data();
+    delete p;
+    node = node->Next();
+  };
 };
 
 void wxDC::DrawSpline( wxList *points )