summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-10 19:19:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-12 12:30:53 +0200
commitdd6d7992d6f16133fafa7a617cf5fa0ba1ae37cc (patch)
tree49da40c8dbfa15a9fde368e0a8b69a623f357eaf /include
parent8891472e1f9c5e452a4e8d55241eeba118274092 (diff)
loplugin:constantparam
Change-Id: I67d74072c776c32a1f91df94c621efe180baf5dc Reviewed-on: https://gerrit.libreoffice.org/37481 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/basic/sbx.hxx2
-rw-r--r--include/svtools/accessibletable.hxx3
-rw-r--r--include/svtools/imap.hxx12
3 files changed, 8 insertions, 9 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx
index 6b2890688710..485a2e89994b 100644
--- a/include/basic/sbx.hxx
+++ b/include/basic/sbx.hxx
@@ -222,7 +222,7 @@ protected:
public:
SBX_DECL_PERSIST_NODATA(SBXID_COLLECTION,1);
- SbxCollection( const OUString& rClassname );
+ SbxCollection();
SbxCollection( const SbxCollection& );
SbxCollection& operator=( const SbxCollection& );
virtual SbxVariable* FindUserData( sal_uInt32 nUserData ) override;
diff --git a/include/svtools/accessibletable.hxx b/include/svtools/accessibletable.hxx
index 335379ac3bc1..f24e2963270a 100644
--- a/include/svtools/accessibletable.hxx
+++ b/include/svtools/accessibletable.hxx
@@ -159,8 +159,7 @@ public:
///** Commits an event to all listeners. */
virtual void commitEvent(
sal_Int16 nEventId,
- const css::uno::Any& rNewValue,
- const css::uno::Any& rOldValue
+ const css::uno::Any& rNewValue
) = 0;
protected:
diff --git a/include/svtools/imap.hxx b/include/svtools/imap.hxx
index 871cf940ace0..ecb5b09edfc1 100644
--- a/include/svtools/imap.hxx
+++ b/include/svtools/imap.hxx
@@ -43,10 +43,10 @@ private:
void ImpReadImageMap( SvStream& rIStm, size_t nCount, const OUString& );
// Import/Export
- void ImpWriteCERN( SvStream& rOStm, const OUString& rBaseURL ) const;
- void ImpWriteNCSA( SvStream& rOStm, const OUString& rBaseURL ) const;
- sal_uLong ImpReadCERN( SvStream& rOStm, const OUString& rBaseURL );
- sal_uLong ImpReadNCSA( SvStream& rOStm, const OUString& rBaseURL );
+ void ImpWriteCERN( SvStream& rOStm ) const;
+ void ImpWriteNCSA( SvStream& rOStm ) const;
+ sal_uLong ImpReadCERN( SvStream& rOStm );
+ sal_uLong ImpReadNCSA( SvStream& rOStm );
void ImpReadCERNLine( const OString& rLine, const OUString& rBaseURL );
static Point ImpReadCERNCoords( const char** ppStr );
@@ -108,8 +108,8 @@ public:
void Scale( const Fraction& rFractX, const Fraction& rFracY );
// Import/Export
- void Write ( SvStream& rOStm, const OUString& rBaseURL ) const;
- void Read( SvStream& rIStm, const OUString& rBaseURL );
+ void Write ( SvStream& rOStm ) const;
+ void Read( SvStream& rIStm );
void Write( SvStream& rOStm, sal_uLong nFormat ) const;
sal_uLong Read( SvStream& rIStm, sal_uLong nFormat );