summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-12-22 19:49:21 -0500
committerAugust Sodora <augsod@gmail.com>2011-12-22 19:55:53 -0500
commitbbad7057b2bdb614a5e97a945039323efe39c4ee (patch)
tree04531c9181fa2bed55ead1f18244a3b58a762a3f /tools/inc
parent0c181a33c9bdcaad9ee2d354ebed9c780120851d (diff)
callcatcher: Remove unused code
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/tools/pstm.hxx5
-rw-r--r--tools/inc/tools/stream.hxx1
-rw-r--r--tools/inc/tools/svborder.hxx1
3 files changed, 0 insertions, 7 deletions
diff --git a/tools/inc/tools/pstm.hxx b/tools/inc/tools/pstm.hxx
index 68b4932e1e51..125875cac8c4 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 &);
@@ -217,8 +216,6 @@ public:
SvPersistStream( SvClassManager &, SvStream * pStream,
sal_uInt32 nStartIdx = 1 );
- SvPersistStream( SvClassManager &, SvStream * pStream,
- const SvPersistStream & rPersStm );
~SvPersistStream();
void SetStream( SvStream * pStream );
@@ -247,8 +244,6 @@ public:
// gespeichert werden.
friend SvStream& operator >> ( SvStream &, SvPersistStream & );
friend SvStream& operator << ( SvStream &, SvPersistStream & );
- sal_uIntPtr InsertObj( SvPersistBase * );
- sal_uIntPtr RemoveObj( SvPersistBase * );
};
#endif // _PSTM_HXX
diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx
index 2270effbd074..decae4934f35 100644
--- a/tools/inc/tools/stream.hxx
+++ b/tools/inc/tools/stream.hxx
@@ -651,7 +651,6 @@ public:
sal_Bool LockRange( sal_Size nByteOffset, sal_Size nBytes );
sal_Bool UnlockRange( sal_Size nByteOffset, sal_Size nBytes );
sal_Bool LockFile();
- sal_Bool UnlockFile();
void Open( const String& rFileName, StreamMode eOpenMode );
void Close();
diff --git a/tools/inc/tools/svborder.hxx b/tools/inc/tools/svborder.hxx
index 86c5feb4f4dc..27ccdd008d74 100644
--- a/tools/inc/tools/svborder.hxx
+++ b/tools/inc/tools/svborder.hxx
@@ -40,7 +40,6 @@ public:
{ nTop = nRight = nBottom = nLeft = 0; }
SvBorder( const Size & rSz )
{ nTop = nBottom = rSz.Height(); nRight = nLeft = rSz.Width(); }
- SvBorder( const Rectangle & rOuter, const Rectangle & rInner );
SvBorder( long nLeftP, long nTopP, long nRightP, long nBottomP )
{ nLeft = nLeftP; nTop = nTopP; nRight = nRightP; nBottom = nBottomP; }
sal_Bool operator == ( const SvBorder & rObj ) const