]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcbase.cpp
don't try to subclass tab control using the same window proc for our class, this...
[wxWidgets.git] / src / common / dcbase.cpp
index 4b596ac2f97b87ff675394b1c631ebe75c463ac1..9c9ba611e7769b4fb7b9fae08e56eec36cdbfc0a 100644 (file)
@@ -314,7 +314,7 @@ void wxDCBase::DoDrawSpline( wxList *points )
     double           x1, y1, x2, y2;
 
     wxList::compatibility_iterator node = points->GetFirst();
-    if (node == NULL)
+    if (node == wxList::compatibility_iterator())
         // empty list
         return;
 
@@ -373,7 +373,7 @@ void wxDCBase::DoDrawSpline( wxList *points )
 
 
 // Each element of the widths array will be the width of the string up to and
-// including the coresponding character in text.  This is the generic
+// including the corresponding character in text.  This is the generic
 // implementation, the port-specific classes should do this with native APIs
 // if available and if faster.  Note: pango_layout_index_to_pos is much slower
 // than calling GetTextExtent!!