diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-12 07:04:30 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-12 09:51:53 +0200 |
commit | 64179a5c91ce32d994aad0847cdd728eb473507d (patch) | |
tree | 2c4147281a2da3654481b7c856ab3ad91d2fd9d2 /desktop | |
parent | 9d186e5b0843fc90d587d2bf8199f71f12ab7829 (diff) |
better variable names
Change-Id: I14e667f10ae472f24fbb6107eee449ff9cf7f4a4
Reviewed-on: https://gerrit.libreoffice.org/38683
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/updater.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index e9d9997ed3a4..4dc2d961f07a 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -131,8 +131,8 @@ void createStr(const OUString& rStr, char** pArgs, size_t i) char** createCommandLine() { - OUString aLibExecDirURL( "$BRAND_BASE_DIR/" ); - rtl::Bootstrap::expandMacros(aLibExecDirURL); + OUString aInstallDir( "$BRAND_BASE_DIR/" ); + rtl::Bootstrap::expandMacros(aInstallDir); size_t nArgs = 8; char** pArgs = new char*[nArgs]; @@ -149,7 +149,7 @@ char** createCommandLine() } { // the actual update directory - OUString aInstallPath = getPathFromURL(aLibExecDirURL); + OUString aInstallPath = getPathFromURL(aInstallDir); Updater::log("Install Dir: " + aInstallPath); createStr(aInstallPath, pArgs, 2); } |