Kaydet (Commit) 17d5cdff authored tarafından Caolán McNamara's avatar Caolán McNamara

Three factories in sot never used

üst a4845bd7
...@@ -51,9 +51,6 @@ struct SotData_Impl ...@@ -51,9 +51,6 @@ struct SotData_Impl
sal_uInt32 nSvObjCount; sal_uInt32 nSvObjCount;
std::list<SotObject*> aObjectList; std::list<SotObject*> aObjectList;
SotFactoryList * pFactoryList; SotFactoryList * pFactoryList;
SotFactory * pSotObjectFactory;
SotFactory * pSotStorageStreamFactory;
SotFactory * pSotStorageFactory;
tDataFlavorList* pDataFlavorList; tDataFlavorList* pDataFlavorList;
SotData_Impl(); SotData_Impl();
}; };
......
...@@ -48,18 +48,17 @@ ...@@ -48,18 +48,17 @@
SotData_Impl::SotData_Impl() SotData_Impl::SotData_Impl()
: nSvObjCount( 0 ) : nSvObjCount( 0 )
, pFactoryList( NULL ) , pFactoryList( NULL )
, pSotObjectFactory( NULL )
, pSotStorageStreamFactory( NULL )
, pSotStorageFactory( NULL )
, pDataFlavorList( NULL ) , pDataFlavorList( NULL )
{ {
} }
/************************************************************************* /*************************************************************************
|* SOTDATA() |* SOTDATA()
|* |*
|* Beschreibung |* Beschreibung
*************************************************************************/ *************************************************************************/
namespace { struct ImplData : public rtl::Static<SotData_Impl, ImplData> {}; } namespace { struct ImplData : public rtl::Static<SotData_Impl, ImplData> {}; }
SotData_Impl * SOTDATA() SotData_Impl * SOTDATA()
{ {
return &ImplData::get(); return &ImplData::get();
......
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