diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-05-25 16:11:39 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-05-25 16:11:39 +0200 |
commit | 90f3840e4c767154266c6be1c532f5e748e8c3f7 (patch) | |
tree | e450c55fd645fbd6a0c459de862a1e54d6fc5f05 /sot | |
parent | 090068a41f083d0960c3717724ab539cf0515c3e (diff) |
Make SotStorage and SotStorageStream dtors public
Change-Id: I3ca0d308199bc4acf66a4c473d8b48561560d631
Diffstat (limited to 'sot')
-rw-r--r-- | sot/inc/sot/storage.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/inc/sot/storage.hxx b/sot/inc/sot/storage.hxx index 925ae42f89c1..7f4a563c27c5 100644 --- a/sot/inc/sot/storage.hxx +++ b/sot/inc/sot/storage.hxx @@ -71,13 +71,13 @@ protected: virtual sal_uLong PutData( const void* pData, sal_uLong nSize ); virtual sal_uLong SeekPos( sal_uLong nPos ); virtual void FlushData(); - ~SotStorageStream(); public: SotStorageStream( const String &, StreamMode = STREAM_STD_READWRITE, StorageMode = 0 ); SotStorageStream( BaseStorageStream *pStm ); SotStorageStream(); + ~SotStorageStream(); SO2_DECL_BASIC_CLASS_DLL(SotStorageStream,SOTDATA()) using SvStream::SyncSvStream; @@ -128,9 +128,9 @@ friend class ::binfilter::SvStorage; long m_nVersion; protected: - ~SotStorage(); void CreateStorage( sal_Bool bUCBStorage, StreamMode, StorageMode ); public: + ~SotStorage(); SotStorage( const String &, StreamMode = STREAM_STD_READWRITE, StorageMode = 0 ); |