diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2018-07-21 07:18:18 +0300 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-07-21 08:13:17 +0200 |
commit | 387f4b1e63fabb486d404ec7a47604aec1c9a75c (patch) | |
tree | e39a6f08b42350ff88942e73009165df4a2d8ac6 /sfx2/source/appl/sfxhelp.cxx | |
parent | 715fcaff01ed048c52c69264a7a0fb773dd57b32 (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>
Diffstat (limited to 'sfx2/source/appl/sfxhelp.cxx')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 2 |
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; |