summaryrefslogtreecommitdiff
path: root/framework/inc/uifactory/uielementfactorymanager.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-01 18:33:42 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-01 18:33:42 +0000
commitba8ebf6349e2923b3d4c406b1850879d42335f23 (patch)
tree1ee4a3b03cf5b863a704b348af0b91625f67d116 /framework/inc/uifactory/uielementfactorymanager.hxx
parent65629a6924963c5b3ce42fd800b47dafe637e4ec (diff)
INTEGRATION: CWS removedrafts (1.3.114); FILE MERGED
2005/02/17 12:45:58 cd 1.3.114.1: #i42557# move UNOIDL types from drafts to com
Diffstat (limited to 'framework/inc/uifactory/uielementfactorymanager.hxx')
-rw-r--r--framework/inc/uifactory/uielementfactorymanager.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/framework/inc/uifactory/uielementfactorymanager.hxx b/framework/inc/uifactory/uielementfactorymanager.hxx
index 1f9ccf2a35d6..55f926270923 100644
--- a/framework/inc/uifactory/uielementfactorymanager.hxx
+++ b/framework/inc/uifactory/uielementfactorymanager.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: uielementfactorymanager.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2004-09-08 14:10:05 $
+ * last change: $Author: kz $ $Date: 2005-03-01 19:33:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -108,16 +108,16 @@
#include <com/sun/star/lang/XTypeProvider.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_UI_XUIELEMENTFACTORY_HPP_
-#include <drafts/com/sun/star/ui/XUIElementFactory.hpp>
+#ifndef _COM_SUN_STAR_UI_XUIELEMENTFACTORY_HPP_
+#include <com/sun/star/ui/XUIElementFactory.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_UI_XUIELEMENTFACTORYREGISTRATION_HPP_
-#include <drafts/com/sun/star/ui/XUIElementFactoryRegistration.hpp>
+#ifndef _COM_SUN_STAR_UI_XUIELEMENTFACTORYREGISTRATION_HPP_
+#include <com/sun/star/ui/XUIElementFactoryRegistration.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_FRAME_XMODULEMANAGER_HPP_
-#include "drafts/com/sun/star/frame/XModuleManager.hpp"
+#ifndef _COM_SUN_STAR_FRAME_XMODULEMANAGER_HPP_
+#include "com/sun/star/frame/XModuleManager.hpp"
#endif
//_________________________________________________________________________________________________________________
@@ -138,8 +138,8 @@ namespace framework
class ConfigurationAccess_UIElementFactoryManager;
class UIElementFactoryManager : public com::sun::star::lang::XTypeProvider ,
public com::sun::star::lang::XServiceInfo ,
- public drafts::com::sun::star::ui::XUIElementFactory ,
- public drafts::com::sun::star::ui::XUIElementFactoryRegistration ,
+ public ::com::sun::star::ui::XUIElementFactory ,
+ public ::com::sun::star::ui::XUIElementFactoryRegistration ,
private ThreadHelpBase , // Struct for right initalization of mutex member! Must be first of baseclasses.
public ::cppu::OWeakObject
{
@@ -153,11 +153,11 @@ class UIElementFactoryManager : public com::sun::star::lang::XTypeProvider
DECLARE_XSERVICEINFO
// XUIElementFactory
- virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::ui::XUIElement > SAL_CALL createUIElement( const ::rtl::OUString& ResourceURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Args ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElement > SAL_CALL createUIElement( const ::rtl::OUString& ResourceURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Args ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
// XUIElementFactoryRegistration
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > SAL_CALL getRegisteredFactories( ) throw (::com::sun::star::uno::RuntimeException);
- virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::ui::XUIElementFactory > SAL_CALL getFactory( const ::rtl::OUString& ResourceURL, const ::rtl::OUString& ModuleIdentifier ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElementFactory > SAL_CALL getFactory( const ::rtl::OUString& ResourceURL, const ::rtl::OUString& ModuleIdentifier ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL registerFactory( const ::rtl::OUString& aType, const ::rtl::OUString& aName, const ::rtl::OUString& aModuleIdentifier, const ::rtl::OUString& aFactoryImplementationName ) throw (::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL deregisterFactory( const ::rtl::OUString& aType, const ::rtl::OUString& aName, const ::rtl::OUString& aModuleIdentifier ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
@@ -166,7 +166,7 @@ class UIElementFactoryManager : public com::sun::star::lang::XTypeProvider
sal_Bool m_bConfigRead;
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceManager;
- ::com::sun::star::uno::Reference< ::drafts::com::sun::star::frame::XModuleManager > m_xModuleManager;
+ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModuleManager > m_xModuleManager;
ConfigurationAccess_UIElementFactoryManager* m_pConfigAccess;
};