summaryrefslogtreecommitdiff
path: root/framework/source/uifactory/uielementfactorymanager.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-10-14 05:23:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-10-14 05:23:43 +0000
commit0a6f995f4e6739636123a9829b5e22ea04b52f72 (patch)
tree65e063a7ebfb79d2f184338c18cc2b66e568a480 /framework/source/uifactory/uielementfactorymanager.cxx
parentf88f6451fb99709768369d774f6eff35b3715902 (diff)
CWS-TOOLING: integrate CWS mba30fixes02
Diffstat (limited to 'framework/source/uifactory/uielementfactorymanager.cxx')
-rw-r--r--framework/source/uifactory/uielementfactorymanager.cxx21
1 files changed, 1 insertions, 20 deletions
diff --git a/framework/source/uifactory/uielementfactorymanager.cxx b/framework/source/uifactory/uielementfactorymanager.cxx
index 97b53a347b..59ee742328 100644
--- a/framework/source/uifactory/uielementfactorymanager.cxx
+++ b/framework/source/uifactory/uielementfactorymanager.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: uielementfactorymanager.cxx,v $
- * $Revision: 1.10 $
+ * $Revision: 1.10.12.1 $
*
* This file is part of OpenOffice.org.
*
@@ -113,7 +113,6 @@ class ConfigurationAccess_UIElementFactoryManager : // interfaces
rtl::OUString getFactorySpecifierFromTypeNameModule( const rtl::OUString& rType, const rtl::OUString& rName, const rtl::OUString& rModule ) const;
void addFactorySpecifierToTypeNameModule( const rtl::OUString& rType, const rtl::OUString& rName, const rtl::OUString& rModule, const rtl::OUString& aServiceSpecifier );
void removeFactorySpecifierFromTypeNameModule( const rtl::OUString& rType, const rtl::OUString& rName, const rtl::OUString& rModule );
- Sequence< rtl::OUString > getAllFactories() const;
Sequence< Sequence< PropertyValue > > getFactoriesDescription() const;
// container.XContainerListener
@@ -258,24 +257,6 @@ void ConfigurationAccess_UIElementFactoryManager::removeFactorySpecifierFromType
m_aUIElementFactoryManagerMap.erase( aHashKey );
}
-Sequence< rtl::OUString > ConfigurationAccess_UIElementFactoryManager::getAllFactories() const
-{
- // SAFE
- ResetableGuard aLock( m_aLock );
-
- Sequence< rtl::OUString > aSeq( m_aUIElementFactoryManagerMap.size() );
-
- sal_Int32 nIndex = 0;
- UIElementFactoryManagerMap::const_iterator pIter = m_aUIElementFactoryManagerMap.begin();
- while ( pIter != m_aUIElementFactoryManagerMap.end() );
- {
- aSeq[nIndex++] = pIter->second;
- ++pIter;
- }
-
- return aSeq;
-}
-
Sequence< Sequence< PropertyValue > > ConfigurationAccess_UIElementFactoryManager::getFactoriesDescription() const
{
// SAFE