diff options
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index b33734208edc..7e589642d0f2 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -1079,7 +1079,7 @@ HtmlTokenId HTMLParser::GetNextToken_() aToken = aToken.toString().toAsciiLowerCase(); if (!maNamespace.isEmpty() && o3tl::starts_with(aToken, maNamespace)) - aToken = aToken.remove( 0, maNamespace.getLength()); + aToken.remove( 0, maNamespace.getLength()); if( HtmlTokenId::NONE == (nRet = GetHTMLToken( aToken )) ) // Unknown control |