summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2018-07-21 07:18:18 +0300
committerJulien Nabet <serval2412@yahoo.fr>2018-07-21 08:13:17 +0200
commit387f4b1e63fabb486d404ec7a47604aec1c9a75c (patch)
treee39a6f08b42350ff88942e73009165df4a2d8ac6
parent715fcaff01ed048c52c69264a7a0fb773dd57b32 (diff)
Remove useless self-assignment of sHelpPath
Change-Id: I4ba4a19a45ade62e65ae987cadb8ba07d4a5e006 Reviewed-on: https://gerrit.libreoffice.org/57794 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--sfx2/source/appl/sfxhelp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx
index cb7e3f0696e9..e7e5cbea4194 100644
--- a/sfx2/source/appl/sfxhelp.cxx
+++ b/sfx2/source/appl/sfxhelp.cxx
@@ -251,7 +251,7 @@ static OUString HelpLocaleString()
return aLocaleStr;
}
- sHelpPath = sHelpPath = getHelpRootURL() + "/" + utl::ConfigManager::getProductVersion() + "/" + aEnglish;
+ sHelpPath = getHelpRootURL() + "/" + utl::ConfigManager::getProductVersion() + "/" + aEnglish;
if (impl_checkHelpLocalePath(sHelpPath))
{
return aEnglish;