]> git.saurik.com Git - wxWidgets.git/commitdiff
ugly fix for warnings when wxUSE_STL==0 not breaking compilation when wxUSE_STL==1
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 13 Jul 2003 22:53:49 +0000 (22:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 13 Jul 2003 22:53:49 +0000 (22:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dcbase.cpp
src/html/htmlpars.cpp

index 8534732e7ba1577775e4a9e70b8b59365cea589c..77b09b154b28cfb0e66945eb55ab6017eda5195b 100644 (file)
@@ -290,7 +290,11 @@ void wxDCBase::DoDrawSpline( wxList *points )
 
     wx_spline_add_point(x1, y1);
 
-    while ((node = node->GetNext()))
+    while ((node = node->GetNext())
+#if !wxUSE_STL
+           != NULL
+#endif // !wxUSE_STL
+          )
     {
         p = (wxPoint *)node->GetData();
         x1 = x2;
index bb209217f71ae51ca057a615034ebbd0f89d1c64..3a409efb3bd1fef50d9fd751f3c6487c5fd510ae 100644 (file)
@@ -375,7 +375,12 @@ void wxHtmlParser::PopTagHandler()
     wxList::compatibility_iterator first;
 
     if ( !m_HandlersStack ||
-         !(first = m_HandlersStack->GetFirst()) )
+#if wxUSE_STL
+         !(first = m_HandlersStack->GetFirst())
+#else // !wxUSE_STL
+         ((first = m_HandlersStack->GetFirst()) == NULL)
+#endif // wxUSE_STL/!wxUSE_STL
+        )
     {
         wxLogWarning(_("Warning: attempt to remove HTML tag handler from empty stack."));
         return;