summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-26 13:17:34 +0200
committerNoel Grandin <noel@peralex.com>2015-06-29 10:05:35 +0200
commit4e99430e63a940d600cad2aaf1f0e992034b66e2 (patch)
tree4506acf8175b25f729fbe95dbed30f30f7200a0f /sot
parentb488c7eeac1a0deba393c3d7b68f3da5a89857de (diff)
remove custom RTTI from SotFactory
unused Change-Id: I22f55aa403cd97ce2c5bf6a521c14a693e4373a7
Diffstat (limited to 'sot')
-rw-r--r--sot/source/base/factory.cxx1
-rw-r--r--sot/source/base/object.cxx2
-rw-r--r--sot/source/sdstor/storage.cxx4
3 files changed, 0 insertions, 7 deletions
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,