diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-29 10:51:46 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-29 11:46:10 +0100 |
commit | e9a23fd78c7506cc28cdd4619cdb623813e36c61 (patch) | |
tree | f1e38399354c3f09382c5559bfdd80126a7e9c27 /sfx2 | |
parent | 43b84c96629e78e17e6a1e51e4c482887197036f (diff) |
Introduce com.sun.star.ui.theUIElementFactoryManager singleton.
To replace single-instance com.sun.star.ui.UIElementFactoryManager
service.
Change-Id: I4262909c4396e3907d271a56696a06903168a58d
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/pch/precompiled_sfx.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/dialog/taskpane.cxx | 6 | ||||
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/toolbox/tbxitem.cxx | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/inc/pch/precompiled_sfx.hxx b/sfx2/inc/pch/precompiled_sfx.hxx index 208f750dd5ab..9d715a6e775d 100644 --- a/sfx2/inc/pch/precompiled_sfx.hxx +++ b/sfx2/inc/pch/precompiled_sfx.hxx @@ -443,7 +443,7 @@ #include <com/sun/star/ui/ImageType.hpp> #include <com/sun/star/ui/ModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/UIConfigurationManager.hpp> -#include <com/sun/star/ui/UIElementFactoryManager.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/ui/UIElementType.hpp> #include <com/sun/star/ui/WindowContentFactoryManager.hpp> #include <com/sun/star/ui/WindowStateConfiguration.hpp> diff --git a/sfx2/source/dialog/taskpane.cxx b/sfx2/source/dialog/taskpane.cxx index 0892b06d17e4..b7307f8da04a 100644 --- a/sfx2/source/dialog/taskpane.cxx +++ b/sfx2/source/dialog/taskpane.cxx @@ -37,7 +37,7 @@ #include <com/sun/star/graphic/XGraphicProvider.hpp> #include <com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/awt/XControl.hpp> -#include <com/sun/star/ui/UIElementFactoryManager.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <comphelper/namedvaluecollection.hxx> #include <comphelper/types.hxx> @@ -77,7 +77,7 @@ namespace sfx2 using ::com::sun::star::ui::XToolPanel; using ::com::sun::star::ui::XUIElementFactory; using ::com::sun::star::ui::XUIElementFactoryManager; - using ::com::sun::star::ui::UIElementFactoryManager; + using ::com::sun::star::ui::theUIElementFactoryManager; using ::com::sun::star::ui::XUIElement; using ::com::sun::star::awt::XWindow; using ::com::sun::star::frame::XFrame; @@ -358,7 +358,7 @@ namespace sfx2 m_bAttemptedCreation = true; try { - const Reference< XUIElementFactoryManager > xFactory = UIElementFactoryManager::create( ::comphelper::getProcessComponentContext() ); + const Reference< XUIElementFactoryManager > xFactory = theUIElementFactoryManager::get( ::comphelper::getProcessComponentContext() ); ::comphelper::NamedValueCollection aCreationArgs; aCreationArgs.put( "Frame", makeAny( m_xFrame ) ); diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index 357c5456c4fe..8d86e65132c1 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -47,7 +47,7 @@ #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/ui/ContextChangeEventMultiplexer.hpp> #include <com/sun/star/ui/ContextChangeEventObject.hpp> -#include <com/sun/star/ui/UIElementFactoryManager.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/rendering/XSpriteCanvas.hpp> @@ -761,7 +761,7 @@ Reference<ui::XUIElement> SidebarController::CreateUIElement ( { const Reference<XComponentContext> xComponentContext (::comphelper::getProcessComponentContext() ); const Reference<ui::XUIElementFactory> xUIElementFactory = - ui::UIElementFactoryManager::create( xComponentContext ); + ui::theUIElementFactoryManager::get( xComponentContext ); // Create the XUIElement. ::comphelper::NamedValueCollection aCreationArguments; diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx index 3ff970a2cc7c..99dc1f0b7a6d 100644 --- a/sfx2/source/toolbox/tbxitem.cxx +++ b/sfx2/source/toolbox/tbxitem.cxx @@ -47,7 +47,7 @@ #include <com/sun/star/frame/XModuleManager.hpp> #include <com/sun/star/container/XNameAccess.hpp> #include <com/sun/star/ui/XUIFunctionListener.hpp> -#include <com/sun/star/ui/UIElementFactoryManager.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/frame/status/Visibility.hpp> #include <svl/eitem.hxx> #include <svl/stritem.hxx> @@ -797,7 +797,7 @@ void SfxToolBoxControl::createAndPositionSubToolBar( const OUString& rSubToolBar xUIElementFactory = xWeakUIElementFactory; if ( !xUIElementFactory.is() ) { - xUIElementFactory = UIElementFactoryManager::create( m_xContext ); + xUIElementFactory = theUIElementFactoryManager::get( m_xContext ); xWeakUIElementFactory = xUIElementFactory; } |