summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-23 17:38:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-23 20:33:17 +0200
commit044eba71e34fd3ac5de20578cc62f85756ad07b4 (patch)
treead3626d1e6cb3ff09ddc24014c26dddd4ab594b2 /configmgr
parent732bf455279d1db150c600bb1d2719ddde517480 (diff)
loplugin:stringadd (clang-cl)
Change-Id: I324496ff7c61d87a83b6b378810aa5c78cd7dba3 Reviewed-on: https://gerrit.libreoffice.org/81405 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/winreg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/winreg.cxx b/configmgr/source/winreg.cxx
index 0fd372aa927a..6e4690500996 100644
--- a/configmgr/source/winreg.cxx
+++ b/configmgr/source/winreg.cxx
@@ -141,9 +141,9 @@ void dumpWindowsRegistryKey(HKEY hKey, OUString const & aKeyName, TempFile &aFil
//Make up full key name
if(aKeyName.isEmpty())
- aSubkeyName = aKeyName + OUString(o3tl::toU(buffKeyName));
+ aSubkeyName = aKeyName + o3tl::toU(buffKeyName);
else
- aSubkeyName = aKeyName + "\\" + OUString(o3tl::toU(buffKeyName));
+ aSubkeyName = aKeyName + "\\" + o3tl::toU(buffKeyName);
//Recursion, until no more subkeys are found
dumpWindowsRegistryKey(hKey, aSubkeyName, aFileHandle);