]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_pre.cpp
removed show_progress argument in some private functions -- was never used
[wxWidgets.git] / src / html / m_pre.cpp
index 78e139755897a1e6fac065a93f5fd8c8ea51d842..5a5a3ecb0167c8e1fd4f7532dc34c0a1f8de4e88 100644 (file)
@@ -29,6 +29,7 @@
 
 #include "wx/html/htmlcell.h"
 #include "wx/tokenzr.h"
+#include "wx/encconv.h"
 
 FORCE_LINK_ME(m_pre)
 
@@ -133,13 +134,15 @@ TAG_HANDLER_BEGIN(PRE, "PRE")
         m_WParser -> SetFontBold(FALSE);
         m_WParser -> SetFontItalic(FALSE);
         m_WParser -> SetFontFixed(TRUE);
-        m_WParser -> SetFontSize(0);
+        m_WParser -> SetFontSize(3);
         c -> InsertCell(new wxHtmlFontCell(m_WParser -> CreateCurrentFont()));
 
         {
             wxString cit;
+            wxEncodingConverter *encconv = m_WParser -> GetEncodingConverter();
             cit = m_WParser -> GetSource() -> Mid(tag.GetBeginPos(), tag.GetEndPos1() - tag.GetBeginPos());
-            c -> InsertCell(new wxHtmlPRECell(cit, *(m_WParser -> GetDC())));
+            wxString cit2(encconv ? encconv -> Convert(cit) : cit);
+            c -> InsertCell(new wxHtmlPRECell(cit2, *(m_WParser -> GetDC())));
         }
 
         m_WParser -> SetFontUnderlined(underlined);