Kaydet (Commit) 4e99430e authored tarafından Noel Grandin's avatar Noel Grandin

remove custom RTTI from SotFactory

unused

Change-Id: I22f55aa403cd97ce2c5bf6a521c14a693e4373a7
üst b488c7ee
......@@ -46,7 +46,6 @@ class SOT_DLLPUBLIC SotFactory : public SvGlobalName
protected:
virtual ~SotFactory();
public:
TYPEINFO();
static void IncSvObjectCount( SotObject * = NULL );
static void DecSvObjectCount( SotObject * = NULL );
......
......@@ -73,7 +73,6 @@ SotData_Impl * SOTDATA()
|*
|* Beschreibung
*************************************************************************/
TYPEINIT0(SotFactory);
SotFactory::SotFactory( const SvGlobalName & rName,
const OUString & rClassName,
......
......@@ -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,
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment