]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/mod_hline.cpp
fix for Append() bug for sorted comboboxes
[wxWidgets.git] / src / html / mod_hline.cpp
index c79c3ad13e178e1777bc850a1059260f555e378d..7bada2919b750a7c82d05eb5dae8e0e66952bb79 100644 (file)
@@ -6,9 +6,24 @@
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
+#include <wx/wxprec.h>
+
 
 #include "wx/defs.h"
 #if wxUSE_HTML
+#ifdef __BORDLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef WXPRECOMP
+#include <wx/wx.h>
+#endif
+
+
 
 #include <wx/html/forcelink.h>
 #include <wx/html/mod_templ.h>
@@ -63,7 +78,7 @@ TAG_HANDLER_BEGIN(HR, "HR")
         c -> SetAlignHor(HTML_ALIGN_CENTER);
         c -> SetAlign(tag);
         c -> SetWidthFloat(tag);
-        if (tag.HasParam("SIZE")) tag.ScanParam("SIZE", "%i", &sz);
+        if (tag.HasParam("SIZE") && tag.ScanParam("SIZE", "%i", &sz) == 1) {}
         else sz = 1;
         c -> InsertCell(new wxHtmlLineCell(sz));