diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2022-03-02 18:11:53 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2022-03-02 20:52:16 +0100 |
commit | 89101372c892d2ec3cfa8008101cbfb56ac1cf99 (patch) | |
tree | 0ddb676f1ce82a3ee3a5cc7a5afe2a656721b041 /svtools | |
parent | 390bba81f590cc885582d17a2f78d0465e39fb72 (diff) |
remove self-assign
Change-Id: Idd0dfd7c68dfc19458a710c79234dd76e6f91ab2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130893
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'svtools')
-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 |