From c77918bb03974ff9be90c889f77e62ea0755052f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fridrich=20=C5=A0trba?= Date: Fri, 25 May 2012 16:46:41 +0200 Subject: [PATCH] Revert "Make SotStorage and SotStorageStream dtors public" This reverts commit 90f3840e4c767154266c6be1c532f5e748e8c3f7. --- sot/inc/sot/storage.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sot/inc/sot/storage.hxx b/sot/inc/sot/storage.hxx index 7f4a563c27c5..925ae42f89c1 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 );