]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlfilt.cpp
Distrib corrections,
[wxWidgets.git] / src / html / htmlfilt.cpp
index bb55c450cc02be3886d86817fd51d224b9e5a78a..4f885e47c95ef582d6509b095d8985d624d7061f 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "wx/wxprec.h"
 
+#include "wx/defs.h"
 #if wxUSE_HTML
 
 #ifdef __BORDLANDC__
@@ -63,8 +64,8 @@ wxString wxHtmlFilterPlainText::ReadFile(const wxFSFile& file) const
     doc = src;
     delete [] src;
 
-    doc.Replace("<", "&lt;", TRUE);
-    doc.Replace(">", "&gt;", TRUE);
+    doc.Replace(wxT("<"), wxT("&lt;"), TRUE);
+    doc.Replace(wxT(">"), wxT("&gt;"), TRUE);
     doc2 = "<HTML><BODY><PRE>\n" + doc + "\n</PRE></BODY></HTML>";
     return doc2;
 }