summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-05 12:03:30 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-05 11:56:06 +0000
commita40278562557828634886924c82f58e215be9756 (patch)
treecab700911bbcfbf280d962cbcac433e2892a337b /sot
parentb4e12269e813338afc895986fbc4f2703cedd016 (diff)
loplugin:countusersofdefaultparams in sfx2..svgio
Change-Id: Ia01f3a9aa21c88df5fe5242ad4a3c0acbe68fda0 Reviewed-on: https://gerrit.libreoffice.org/27903 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgavl.hxx2
-rw-r--r--sot/source/sdstor/stgstrms.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgavl.hxx b/sot/source/sdstor/stgavl.hxx
index 14f68fc44062..b02edb02a0fe 100644
--- a/sot/source/sdstor/stgavl.hxx
+++ b/sot/source/sdstor/stgavl.hxx
@@ -44,7 +44,7 @@ public:
virtual ~StgAvlNode();
StgAvlNode* Find( StgAvlNode* );
static bool Insert( StgAvlNode**, StgAvlNode* );
- static bool Remove( StgAvlNode**, StgAvlNode*, bool bDel = true );
+ static bool Remove( StgAvlNode**, StgAvlNode*, bool bDel );
virtual short Compare( const StgAvlNode* ) const = 0;
};
diff --git a/sot/source/sdstor/stgstrms.hxx b/sot/source/sdstor/stgstrms.hxx
index 808fc0a7b3df..c2c61c006b54 100644
--- a/sot/source/sdstor/stgstrms.hxx
+++ b/sot/source/sdstor/stgstrms.hxx
@@ -71,7 +71,7 @@ protected:
short m_nOffset; // offset into current page
short m_nPageSize; // logical page size
std::vector<sal_Int32> m_aPagesCache;
- void scanBuildPageChainCache(sal_Int32 *pOptionalCalcSize = nullptr);
+ void scanBuildPageChainCache(sal_Int32 *pOptionalCalcSize);
bool Copy( sal_Int32 nFrom, sal_Int32 nBytes );
explicit StgStrm( StgIo& );
public: