From ac310071eb397c3701e3c3cf650a893a225274f3 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 10 Jan 2012 23:20:46 +0000 Subject: callcatcher: lets trust my own tooling --- tools/inc/tools/pstm.hxx | 1 - tools/inc/tools/ref.hxx | 4 ---- tools/source/ref/pstm.cxx | 3 --- 3 files changed, 8 deletions(-) (limited to 'tools') diff --git a/tools/inc/tools/pstm.hxx b/tools/inc/tools/pstm.hxx index 68b4932e1e51..e557b6338719 100644 --- a/tools/inc/tools/pstm.hxx +++ b/tools/inc/tools/pstm.hxx @@ -127,7 +127,6 @@ class TOOLS_DLLPUBLIC SvPersistBaseMemberList : public SuperSvPersistBaseMemberL { public: SvPersistBaseMemberList(); - SvPersistBaseMemberList(sal_uInt16 nInitSz, sal_uInt16 nResize ); void WriteObjects( SvPersistStream &, sal_Bool bOnlyStreamedObj = sal_False ) const; TOOLS_DLLPUBLIC friend SvPersistStream& operator << (SvPersistStream &, const SvPersistBaseMemberList &); diff --git a/tools/inc/tools/ref.hxx b/tools/inc/tools/ref.hxx index d5ecfe452743..24fb9627de5a 100644 --- a/tools/inc/tools/ref.hxx +++ b/tools/inc/tools/ref.hxx @@ -274,7 +274,6 @@ inline void CN##MemberList::Append( const CN##MemberList & rList )\ /************************** S v M e m b e r L i s t **********************/ #define PRV_SV_DECL_MEMBER_LIST(Class,EntryName) \ Class##MemberList() {} \ -inline Class##MemberList(sal_uInt16 nInitSz,sal_uInt16 nResize);\ inline void Insert( EntryName p ); \ inline void Insert( EntryName p, sal_uIntPtr nIndex ); \ inline void Append( EntryName p ); \ @@ -295,9 +294,6 @@ inline EntryName Prev();\ inline void Append( const Class##MemberList & rList ); #define PRV_SV_IMPL_MEMBER_LIST(ClassName,EntryName,BaseList)\ -inline ClassName##MemberList::ClassName##MemberList\ - (sal_uInt16 nInitSz,sal_uInt16 nResize)\ - : BaseList( nInitSz, nResize ){}\ inline void ClassName##MemberList::Insert( EntryName p )\ {BaseList::Insert(p);}\ inline void ClassName##MemberList::Insert( EntryName p, sal_uIntPtr nIdx )\ diff --git a/tools/source/ref/pstm.cxx b/tools/source/ref/pstm.cxx index a91b078409cb..6a0b17c79c42 100644 --- a/tools/source/ref/pstm.cxx +++ b/tools/source/ref/pstm.cxx @@ -62,9 +62,6 @@ TYPEINIT0( SvRttiBase ); /****************** SvPersistBaseMemberList ******************************/ SvPersistBaseMemberList::SvPersistBaseMemberList(){} -SvPersistBaseMemberList::SvPersistBaseMemberList( - sal_uInt16 nInitSz, sal_uInt16 nResize ) - : SuperSvPersistBaseMemberList( nInitSz, nResize ){} #define PERSIST_LIST_VER (sal_uInt8)0 #define PERSIST_LIST_DBGUTIL (sal_uInt8)0x80 -- cgit