diff options
author | Oliver Specht <oliver.specht@cib.de> | 2015-11-07 14:43:19 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-11-11 10:49:30 +0000 |
commit | fa91dd31f39a24329d288d4e1cda28db3a16af0d (patch) | |
tree | 603d7c206ac0ec1f1a08cc9f3bf8835bd8d2fb2f /sot | |
parent | c21ddcdb30b8dd7be56176e00bc2d4780cb342e1 (diff) |
5th step to remove tools/rtti.hxx
tools/rtti.hxx removed
completed the interface of some Sdr.* Items
and removed pseudo items
Change-Id: I0cdcd01494be35b97a27d5985aa908affa96048a
Reviewed-on: https://gerrit.libreoffice.org/19837
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'sot')
-rw-r--r-- | sot/inc/pch/precompiled_sot.hxx | 1 | ||||
-rw-r--r-- | sot/source/base/filelist.cxx | 1 | ||||
-rw-r--r-- | sot/source/sdstor/stg.cxx | 5 | ||||
-rw-r--r-- | sot/source/sdstor/ucbstorage.cxx | 2 |
4 files changed, 0 insertions, 9 deletions
diff --git a/sot/inc/pch/precompiled_sot.hxx b/sot/inc/pch/precompiled_sot.hxx index e1da2bcaf5c3..7f30141d4ccb 100644 --- a/sot/inc/pch/precompiled_sot.hxx +++ b/sot/inc/pch/precompiled_sot.hxx @@ -78,7 +78,6 @@ #include <tools/debug.hxx> #include <tools/globname.hxx> #include <tools/ref.hxx> -#include <tools/rtti.hxx> #include <tools/solar.h> #include <tools/stream.hxx> #include <tools/urlobj.hxx> diff --git a/sot/source/base/filelist.cxx b/sot/source/base/filelist.cxx index adb3c32987be..49346445e271 100644 --- a/sot/source/base/filelist.cxx +++ b/sot/source/base/filelist.cxx @@ -19,7 +19,6 @@ #include <rtl/ustrbuf.hxx> #include <tools/stream.hxx> -#include <tools/rtti.hxx> #include <sot/exchange.hxx> #include <sot/filelist.hxx> #include <osl/diagnose.h> diff --git a/sot/source/sdstor/stg.cxx b/sot/source/sdstor/stg.cxx index 2c126466b3de..52453000f5f8 100644 --- a/sot/source/sdstor/stg.cxx +++ b/sot/source/sdstor/stg.cxx @@ -44,9 +44,6 @@ static long nTmpCount = 0; ///////////////////////// class StorageBase -TYPEINIT0( StorageBase ); -TYPEINIT1( BaseStorageStream, StorageBase ); -TYPEINIT1( BaseStorage, StorageBase ); StorageBase::StorageBase() : m_bAutoCommit( false ) @@ -155,7 +152,6 @@ bool OLEStorageBase::ValidateMode_Impl( StreamMode m, StgDirEntry* p ) //////////////////////// class StorageStream -TYPEINIT1( StorageStream, BaseStorageStream ); StorageStream::StorageStream( StgIo* p, StgDirEntry* q, StreamMode m ) : OLEStorageBase( p, q, m_nMode ), nPos( 0L ) @@ -336,7 +332,6 @@ bool Storage::IsStorageFile( SvStream* pStream ) // Open the storage file. If writing is permitted and the file is not // a storage file, initialize it. -TYPEINIT1( Storage, BaseStorage ); Storage::Storage( const OUString& rFile, StreamMode m, bool bDirect ) : OLEStorageBase( new StgIo, nullptr, m_nMode ) diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index 178446bde51a..a68b0a5efe20 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -304,8 +304,6 @@ void FileStreamWrapper_Impl::checkError() throw NotConnectedException(OUString(), const_cast<XWeak*>(static_cast<const XWeak*>(this))); } -TYPEINIT1( UCBStorageStream, BaseStorageStream ); -TYPEINIT1( UCBStorage, BaseStorage ); #define COMMIT_RESULT_FAILURE 0 #define COMMIT_RESULT_NOTHING_TO_DO 1 |