From 0a840edcc19ad1b8bb1525717d91ce8ade0c0092 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 18 Nov 2016 10:10:48 +0200 Subject: includes should be at the top of the file not randomly scattered through the code found with something like: git ls-files *.cpp | xargs grep -Pzl "(?s){.*#include" Change-Id: I9c242fa4ef99e8677f2800d7ec9f16d16e488351 Reviewed-on: https://gerrit.libreoffice.org/30952 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sot/source/sdstor/storage.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sot/source') diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx index cba36422b3bc..36dca8f6bedf 100644 --- a/sot/source/sdstor/storage.cxx +++ b/sot/source/sdstor/storage.cxx @@ -35,6 +35,9 @@ #include #include #include +#include +#include +#include #include @@ -277,9 +280,6 @@ bool SotStorageStream::SetProperty( const OUString& rName, const css::uno::Any& , m_nVersion( SOFFICE_FILEFORMAT_CURRENT ) #define ERASEMASK ( StreamMode::TRUNC | StreamMode::WRITE | StreamMode::SHARE_DENYALL ) -#include -#include -#include SotStorage::SotStorage( const OUString & rName, StreamMode nMode ) INIT_SotStorage() -- cgit