X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ab8db384f4d19be0c22f00abad90ccc79924c61..ca7dc59aeb955a5aeb2c81781d27bb028a0d04d1:/src/html/m_pre.cpp?ds=sidebyside

diff --git a/src/html/m_pre.cpp b/src/html/m_pre.cpp
index 91cc6579d8..9d84e28fa5 100644
--- a/src/html/m_pre.cpp
+++ b/src/html/m_pre.cpp
@@ -94,10 +94,10 @@ TAG_HANDLER_BEGIN(PRE, "PRE")
             fsize = m_WParser->GetFontSize();
 
         c = m_WParser->GetContainer();
-        m_WParser->SetFontUnderlined(FALSE);
-        m_WParser->SetFontBold(FALSE);
-        m_WParser->SetFontItalic(FALSE);
-        m_WParser->SetFontFixed(TRUE);
+        m_WParser->SetFontUnderlined(false);
+        m_WParser->SetFontBold(false);
+        m_WParser->SetFontItalic(false);
+        m_WParser->SetFontFixed(true);
         m_WParser->SetFontSize(3);
         c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont()));
 
@@ -128,7 +128,7 @@ TAG_HANDLER_BEGIN(PRE, "PRE")
         m_WParser->SetFontSize(fsize);
         c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont()));
 
-        return TRUE;
+        return true;
     }
 
 TAG_HANDLER_END(PRE)