diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-26 08:58:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-26 08:58:00 +0200 |
commit | b88aeb7e75b220b9d1fd6e69242950bcbf2e3818 (patch) | |
tree | c40873403f6699ee187dadf66b14400da5041e16 /sc | |
parent | 96d8b05d96fff4ec2780e09dc822187a9d8ef3f7 (diff) |
Fix warning: statement aligned ... [loplugin]
Change-Id: I8ddf78f70074cca6eb57ee0a27ea78076ff2d21d
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/docshell/impex.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 1ab5ef7470bb..e35551ab9d0e 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -2259,11 +2259,11 @@ ScFormatFilterPlugin &ScFormatFilter::Get() return *plugin; #ifndef DISABLE_DYNLOADING - #ifdef LIBO_MERGELIBS - OUString sFilterLib(SVLIBRARY("merged")); - #else - OUString sFilterLib(SVLIBRARY("scfilt")); - #endif +#ifdef LIBO_MERGELIBS + OUString sFilterLib(SVLIBRARY("merged")); +#else + OUString sFilterLib(SVLIBRARY("scfilt")); +#endif static ::osl::Module aModule; bool bLoaded = aModule.loadRelative(&thisModule, sFilterLib); if (!bLoaded) |