diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-03 22:25:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-04 09:36:47 +0100 |
commit | 9c0bcbaa53871c1f416828b21695e8ce6eb82e7e (patch) | |
tree | 4fbc555aa7d09f8cb7c611809aca5f3338cb03f1 /tools/inc | |
parent | 7ffcbeb77bc40517a86c3e86b07034f5ee42cf6b (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/cachestr.hxx | 7 | ||||
-rw-r--r-- | tools/inc/tools/stream.hxx | 1 | ||||
-rw-r--r-- | tools/inc/tools/unqid.hxx | 2 | ||||
-rw-r--r-- | tools/inc/tools/zcodec.hxx | 1 |
4 files changed, 0 insertions, 11 deletions
diff --git a/tools/inc/tools/cachestr.hxx b/tools/inc/tools/cachestr.hxx index adb9aacc28d2..0d88bca455d4 100644 --- a/tools/inc/tools/cachestr.hxx +++ b/tools/inc/tools/cachestr.hxx @@ -50,8 +50,6 @@ private: SvStream* pCurrentStream; TempFile* pTempFile; - Link aFilenameLinkHdl; - TOOLS_DLLPRIVATE virtual sal_uIntPtr GetData( void* pData, sal_uIntPtr nSize ); TOOLS_DLLPRIVATE virtual sal_uIntPtr PutData( const void* pData, sal_uIntPtr nSize ); TOOLS_DLLPRIVATE virtual sal_uIntPtr SeekPos( sal_uIntPtr nPos ); @@ -60,13 +58,8 @@ private: public: SvCacheStream( sal_uIntPtr nMaxMemSize = 0 ); - SvCacheStream( const String &rFileName, - sal_uIntPtr nExpectedSize = 0, - sal_uIntPtr nMaxMemSize = 0 ); ~SvCacheStream(); - void SetFilenameHdl( const Link& rLink); - const Link& GetFilenameHdl() const; void SetFilename( const String& rFN ) { aFileName = rFN; } // darf nur vom FilenameHdl gerufen werden! const String& GetFilename() const { return aFileName; } diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx index 0bd7fb654136..5323e3cca40d 100644 --- a/tools/inc/tools/stream.hxx +++ b/tools/inc/tools/stream.hxx @@ -608,7 +608,6 @@ public: void Open( const String& rFileName, StreamMode eOpenMode ); void Close(); - void ReOpen(); // Aufruf nach Close, FilePointer == 0 sal_Bool IsOpen() const { return bIsOpen; } sal_Bool IsLocked() const { return ( nLockCounter!=0 ); } virtual sal_uInt16 IsA() const; diff --git a/tools/inc/tools/unqid.hxx b/tools/inc/tools/unqid.hxx index 9e05b44b4437..1ae6fa4344ae 100644 --- a/tools/inc/tools/unqid.hxx +++ b/tools/inc/tools/unqid.hxx @@ -85,7 +85,6 @@ class TOOLS_DLLPUBLIC UniqueIdContainer : private UniqueIndex public: // Irgend etwas mit protected falsch void Clear( sal_Bool bAll ); - UniqueItemId CreateIdProt( sal_uIntPtr nId ); public: UniqueIdContainer( sal_uIntPtr _nStartIndex, @@ -104,7 +103,6 @@ public: { return UniqueIndex::IsIndexValid( nIndex ); } UniqueItemId CreateId(); - static UniqueItemId CreateFreeId( sal_uIntPtr nId ); // freies Id }; #endif // _UNQID_HXX diff --git a/tools/inc/tools/zcodec.hxx b/tools/inc/tools/zcodec.hxx index 578f367b4cdd..644a225f0c7a 100644 --- a/tools/inc/tools/zcodec.hxx +++ b/tools/inc/tools/zcodec.hxx @@ -112,7 +112,6 @@ public: void SetBreak( sal_uIntPtr ); sal_uIntPtr GetBreak( void ); void SetCRC( sal_uIntPtr nCurrentCRC ); - sal_uIntPtr UpdateCRC( sal_uIntPtr nLatestCRC, sal_uIntPtr nSource ); sal_uIntPtr UpdateCRC( sal_uIntPtr nLatestCRC, sal_uInt8* pSource, long nDatSize ); sal_uIntPtr GetCRC(); }; |