]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_pre.cpp
addind nonowned window implementation
[wxWidgets.git] / src / html / m_pre.cpp
index 5afcbbc6b75964cb1c93a3aa2bac791647a3acaf..026ae9c01860ac398c8de459eea650f14df03cd7 100644 (file)
@@ -41,10 +41,8 @@ static wxString LINKAGEMODE HtmlizeWhitespaces(const wxString& str)
                 while (i < len && str[i] != wxT('>'))
                 {
                     out << str[i++];
-                    linepos++;
                 }
                 out << wxT('>');
-                linepos++;
                 break;
             case wxT(' '):
                 out << wxT("&nbsp;");