From 4e99430e63a940d600cad2aaf1f0e992034b66e2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 26 Jun 2015 13:17:34 +0200 Subject: remove custom RTTI from SotFactory unused Change-Id: I22f55aa403cd97ce2c5bf6a521c14a693e4373a7 --- sot/source/base/factory.cxx | 1 - sot/source/base/object.cxx | 2 -- sot/source/sdstor/storage.cxx | 4 ---- 3 files changed, 7 deletions(-) (limited to 'sot') diff --git a/sot/source/base/factory.cxx b/sot/source/base/factory.cxx index 7f13cf9fcfd7..102e0fc81b91 100644 --- a/sot/source/base/factory.cxx +++ b/sot/source/base/factory.cxx @@ -73,7 +73,6 @@ SotData_Impl * SOTDATA() |* |* Beschreibung *************************************************************************/ -TYPEINIT0(SotFactory); SotFactory::SotFactory( const SvGlobalName & rName, const OUString & rClassName, diff --git a/sot/source/base/object.cxx b/sot/source/base/object.cxx index ddce68b1636e..b8096429363f 100644 --- a/sot/source/base/object.cxx +++ b/sot/source/base/object.cxx @@ -24,14 +24,12 @@ class SotObjectFactory : public SotFactory { public: - TYPEINFO_OVERRIDE(); SotObjectFactory( const SvGlobalName & rName, const OUString & rClassName, CreateInstanceType pCreateFuncP ) : SotFactory( rName, rClassName, pCreateFuncP ) {} }; -TYPEINIT1(SotObjectFactory,SotFactory); SO2_IMPL_BASIC_CLASS_DLL(SotObject,SotObjectFactory, diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx index 4421bcdd1ad0..1a01a04b10a2 100644 --- a/sot/source/sdstor/storage.cxx +++ b/sot/source/sdstor/storage.cxx @@ -45,14 +45,12 @@ using namespace ::com::sun::star; class SotStorageStreamFactory : public SotFactory { public: - TYPEINFO_OVERRIDE(); SotStorageStreamFactory( const SvGlobalName & rName, const OUString & rClassName, CreateInstanceType pCreateFuncP ) : SotFactory( rName, rClassName, pCreateFuncP ) {} }; -TYPEINIT1(SotStorageStreamFactory,SotFactory); SO2_IMPL_BASIC_CLASS1_DLL(SotStorageStream,SotStorageStreamFactory,SotObject, @@ -279,14 +277,12 @@ bool SotStorageStream::SetProperty( const OUString& rName, const ::com::sun::sta class SotStorageFactory : public SotFactory { public: - TYPEINFO_OVERRIDE(); SotStorageFactory( const SvGlobalName & rName, const OUString & rClassName, CreateInstanceType pCreateFuncP ) : SotFactory( rName, rClassName, pCreateFuncP ) {} }; -TYPEINIT1(SotStorageFactory,SotFactory); SO2_IMPL_BASIC_CLASS1_DLL(SotStorage,SotStorageFactory,SotObject, -- cgit