diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-02-11 11:01:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-02-11 11:01:50 +0100 |
commit | b289cf8de23afa2e647b7b2045487bf3ac757e2a (patch) | |
tree | 90a599b247eb8331fb1ea80bbc59d5c9696350a8 /sc | |
parent | 4aea832ffebefd62e5f9a3b34dca493b21a16bb0 (diff) |
loplugin:indentation
Change-Id: Id2704c2ac38125dd6449496c0967eadc3679fdbc
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/screenshots/screenshots.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/qa/unit/screenshots/screenshots.cxx b/sc/qa/unit/screenshots/screenshots.cxx index a036b693702c..310b16076962 100644 --- a/sc/qa/unit/screenshots/screenshots.cxx +++ b/sc/qa/unit/screenshots/screenshots.cxx @@ -98,11 +98,11 @@ void ScScreenshotTest::initialize() SvMemoryStream* pNewMemStream = new SvMemoryStream(const_cast<sal_Unicode *>(mCsv.getStr()), mCsv.getLength() * sizeof(sal_Unicode), StreamMode::READ); pNewMemStream->SetStreamCharSet( RTL_TEXTENCODING_UNICODE ); - #ifdef OSL_BIGENDIAN - pNewMemStream->SetEndian(SvStreamEndian::BIG); - #else - pNewMemStream->SetEndian(SvStreamEndian::LITTLE); - #endif +#ifdef OSL_BIGENDIAN + pNewMemStream->SetEndian(SvStreamEndian::BIG); +#else + pNewMemStream->SetEndian(SvStreamEndian::LITTLE); +#endif mpStream.reset(pNewMemStream); } |