diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-10 23:20:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-11 14:13:31 +0000 |
commit | ac310071eb397c3701e3c3cf650a893a225274f3 (patch) | |
tree | e6ae44a1f6e3d7ebb6b3c2a5a578ca64082be2fc /tools/inc | |
parent | 988829d53327e92b66487ea38bed98b1e6b72d47 (diff) |
callcatcher: lets trust my own tooling
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/pstm.hxx | 1 | ||||
-rw-r--r-- | tools/inc/tools/ref.hxx | 4 |
2 files changed, 0 insertions, 5 deletions
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 )\ |