diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/basic/sbx.hxx | 2 | ||||
-rw-r--r-- | include/svtools/accessibletable.hxx | 3 | ||||
-rw-r--r-- | include/svtools/imap.hxx | 12 |
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 ); |