diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-09 11:06:42 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-09 11:27:23 +0000 |
commit | cb958bb5e0e81d343c91c08a8513006a7bf1d913 (patch) | |
tree | 376b6bdfd1e4be0851f5eba9092588cfde451945 /include/sot | |
parent | f4fcec5f0802620192c31aad24db436ead1b2036 (diff) |
loplugin:constantparam in sot..svl
Change-Id: I08db2db3b90725c556e3ba062da5d62d98f6e882
Reviewed-on: https://gerrit.libreoffice.org/28769
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/stg.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sot/stg.hxx b/include/sot/stg.hxx index 2654fd7a74ca..9439c289c875 100644 --- a/include/sot/stg.hxx +++ b/include/sot/stg.hxx @@ -101,7 +101,7 @@ public: virtual bool Revert() = 0; virtual BaseStorageStream* OpenStream( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, - bool bDirect = true, const OString* pKey=nullptr ) = 0; + bool bDirect = true ) = 0; virtual BaseStorage* OpenStorage( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, bool bDirect = false ) = 0; @@ -189,7 +189,7 @@ public: virtual bool Revert() override; virtual BaseStorageStream* OpenStream( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, - bool bDirect = true, const OString* pKey=nullptr ) override; + bool bDirect = true ) override; virtual BaseStorage* OpenStorage( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, bool bDirect = false ) override; @@ -292,7 +292,7 @@ public: virtual bool Revert() override; virtual BaseStorageStream* OpenStream( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, - bool bDirect = true, const OString* pKey=nullptr ) override; + bool bDirect = true ) override; virtual BaseStorage* OpenStorage( const OUString & rEleName, StreamMode = StreamMode::STD_READWRITE, bool bDirect = false ) override; |