diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-11-13 21:02:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-11-14 10:11:32 +0000 |
commit | a94b6ec2d57cab51d79329ea62d908f3b3713505 (patch) | |
tree | 68dd3fe95d4e46e24fb68b225d5ef93310593cda /sot/inc | |
parent | 288a3e6ef7e04c95be1ed26a5df850fbf4e6ea24 (diff) |
callcatcher: update unused code post binfilter death
Change-Id: I5b25d14ef2769126f98523551597f43812b9feb7
Diffstat (limited to 'sot/inc')
-rw-r--r-- | sot/inc/sot/object.hxx | 3 | ||||
-rw-r--r-- | sot/inc/sot/storage.hxx | 12 |
2 files changed, 1 insertions, 14 deletions
diff --git a/sot/inc/sot/object.hxx b/sot/inc/sot/object.hxx index 0424b0d81fa4..81d3d3739dee 100644 --- a/sot/inc/sot/object.hxx +++ b/sot/inc/sot/object.hxx @@ -269,7 +269,6 @@ class SOT_DLLPUBLIC SotObject : virtual public SvRefBase { friend class SotFactory; friend class SvObject; - sal_uInt16 nStrongLockCount; sal_uInt16 nOwnerLockCount; sal_Bool bOwner:1, bSVObject:1, // Ist Proxy, dann TRUE wenn andere Seite SV ist @@ -290,9 +289,7 @@ public: void* CastAndAddRef( const SotFactory * pFact ); - sal_uInt16 Lock( sal_Bool bLock ); // affects nStrongLockCount sal_uInt16 GetOwnerLockCount() const { return nOwnerLockCount; } - sal_uInt16 GetStrongLockCount() const { return nStrongLockCount; } void OwnerLock( sal_Bool bLock ); sal_Bool DoClose(); diff --git a/sot/inc/sot/storage.hxx b/sot/inc/sot/storage.hxx index 012799069fea..3a01028df107 100644 --- a/sot/inc/sot/storage.hxx +++ b/sot/inc/sot/storage.hxx @@ -75,9 +75,6 @@ public: virtual sal_Bool Commit(); virtual sal_Bool Revert(); sal_Bool SetProperty( const String& rName, const ::com::sun::star::uno::Any& rValue ); - sal_Bool GetProperty( const String& rName, ::com::sun::star::uno::Any& rValue ); - ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > - GetXInputStream() const; virtual sal_Size remainingSize(); }; @@ -127,7 +124,6 @@ public: SO2_DECL_BASIC_CLASS_DLL(SotStorage,SOTDATA()) SvMemoryStream * CreateMemoryStream(); - const SvStream * GetSvStream(); static sal_Bool IsStorageFile( const String & rFileName ); static sal_Bool IsStorageFile( SvStream* pStream ); @@ -136,8 +132,7 @@ public: virtual sal_Bool Validate(); - void SetKey( const rtl::OString& rKey ); - const rtl::OString& GetKey() const { return m_aKey; } + const rtl::OString& GetKey() const; void SetVersion( long nVers ) { @@ -172,7 +167,6 @@ public: virtual sal_uLong GetFormat(); virtual String GetUserName(); virtual sal_Bool ShouldConvert(); - void SetName( const String& rName ); // Liste aller Elemente virtual void FillInfoList( SvStorageInfoList * ) const; @@ -189,9 +183,6 @@ public: SotStorage * OpenSotStorage( const String & rEleName, StreamMode = STREAM_STD_READWRITE, StorageMode = STORAGE_TRANSACTED ); - SotStorage * OpenUCBStorage( const String & rEleName, - StreamMode = STREAM_STD_READWRITE, - StorageMode = STORAGE_TRANSACTED ); // Abfrage auf Storage oder Stream virtual sal_Bool IsStream( const String & rEleName ) const; virtual sal_Bool IsStorage( const String & rEleName ) const; @@ -207,7 +198,6 @@ public: const String & rNewName ); sal_Bool SetProperty( const String& rName, const ::com::sun::star::uno::Any& rValue ); - sal_Bool GetProperty( const String& rName, ::com::sun::star::uno::Any& rValue ); sal_Bool IsOLEStorage() const; static sal_Bool IsOLEStorage( const String & rFileName ); static sal_Bool IsOLEStorage( SvStream* pStream ); |