]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed BC compilation bug (line 145)
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 17 Jan 2000 17:19:31 +0000 (17:19 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 17 Jan 2000 17:19:31 +0000 (17:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/m_pre.cpp

index f4999ee76bd6f921f9e6aad62c8cb7e32a8636f5..5a5a3ecb0167c8e1fd4f7532dc34c0a1f8de4e88 100644 (file)
@@ -141,9 +141,8 @@ TAG_HANDLER_BEGIN(PRE, "PRE")
             wxString cit;
             wxEncodingConverter *encconv = m_WParser -> GetEncodingConverter();
             cit = m_WParser -> GetSource() -> Mid(tag.GetBeginPos(), tag.GetEndPos1() - tag.GetBeginPos());
-            c -> InsertCell(new wxHtmlPRECell(
-                                encconv ? encconv -> Convert(cit) : cit,
-                                *(m_WParser -> GetDC())));
+            wxString cit2(encconv ? encconv -> Convert(cit) : cit);
+            c -> InsertCell(new wxHtmlPRECell(cit2, *(m_WParser -> GetDC())));
         }
 
         m_WParser -> SetFontUnderlined(underlined);