diff options
author | Emanuel Schorsch <emschorsch@google.com> | 2021-10-17 18:31:30 -0700 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-18 09:10:46 +0200 |
commit | 191e5fc227e40d18a1fe4563ed145517117596ea (patch) | |
tree | 79e0663d12f74da0aa3de82fc4eedae647767b86 /sal | |
parent | 5eb9ad92ac6169d7aab92452ce9e1219441f4e52 (diff) |
Noop unify style for branches
Change-Id: Ifa96b7f273f7c154fdd267efba7271765ff7ae45
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123728
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index fc551c8ce933..9feadf874e54 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -919,11 +919,9 @@ OUString expandMacros( } else if (n == 2) { - buf.append( - lookup( - static_cast< Bootstrap_Impl * >( - rtl::Bootstrap(seg[0]).getHandle()), - mode, false, seg[1], requestStack)); + rtl::Bootstrap b(seg[0]); + Bootstrap_Impl * f = static_cast< Bootstrap_Impl * >(b.getHandle()); + buf.append(lookup(f, mode, false, seg[1], requestStack)); } else if (n == 3 && seg[0] == ".override") { |