summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-15 09:28:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-08-15 09:50:39 +0100
commit76c615c177fab1d1bdaae38dd312c02e0f3b9396 (patch)
tree85a11e82aaf72fc546cff5c6a5c1e59287d45ca4 /svtools
parent32514ab76dc9eebeaf79d1bd843ca9157595781a (diff)
single arg Erase erased to eol
prior to 33eeb70011b34a3b04a74b2237d1d6fdde030c35 Change-Id: I4c30e6746a62e4035cf019b3186003498f7bdde3
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/svhtml/parhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx
index 9c4043825b84..1b5ec96e01e5 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -1197,7 +1197,7 @@ int HTMLParser::_GetNextToken()
SetLineNr( nCLineNr );
SetLinePos( nCLinePos );
ClearTxtConvContext();
- aToken = aToken.replaceAt( nCStrLen, 1, "" );
+ aToken = aToken.copy(0, nCStrLen);
nNextCh = '>';
}
}