diff options
Diffstat (limited to 'sd/source/ui/framework')
4 files changed, 11 insertions, 11 deletions
diff --git a/sd/source/ui/framework/factories/BasicPaneFactory.cxx b/sd/source/ui/framework/factories/BasicPaneFactory.cxx index 17b66d7d82c8..c01d315a3d9c 100644 --- a/sd/source/ui/framework/factories/BasicPaneFactory.cxx +++ b/sd/source/ui/framework/factories/BasicPaneFactory.cxx @@ -176,11 +176,11 @@ void SAL_CALL BasicPaneFactory::initialize (const Sequence<Any>& aArguments) xCC->addConfigurationChangeListener( this, FrameworkHelper::msConfigurationUpdateStartEvent, - makeAny(gnConfigurationUpdateStartEvent)); + Any(gnConfigurationUpdateStartEvent)); xCC->addConfigurationChangeListener( this, FrameworkHelper::msConfigurationUpdateEndEvent, - makeAny(gnConfigurationUpdateEndEvent)); + Any(gnConfigurationUpdateEndEvent)); } } catch (RuntimeException&) diff --git a/sd/source/ui/framework/module/SlideSorterModule.cxx b/sd/source/ui/framework/module/SlideSorterModule.cxx index b254a16dc0cd..dbe30f0d3a9c 100644 --- a/sd/source/ui/framework/module/SlideSorterModule.cxx +++ b/sd/source/ui/framework/module/SlideSorterModule.cxx @@ -68,11 +68,11 @@ SlideSorterModule::SlideSorterModule ( mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceActivationRequestEvent, - makeAny(ResourceActivationRequestEvent)); + Any(ResourceActivationRequestEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceDeactivationRequestEvent, - makeAny(ResourceDeactivationRequestEvent)); + Any(ResourceDeactivationRequestEvent)); } } if (!mxConfigurationController.is()) diff --git a/sd/source/ui/framework/module/ToolBarModule.cxx b/sd/source/ui/framework/module/ToolBarModule.cxx index 352417b33f71..3cecf7b031f0 100644 --- a/sd/source/ui/framework/module/ToolBarModule.cxx +++ b/sd/source/ui/framework/module/ToolBarModule.cxx @@ -61,19 +61,19 @@ ToolBarModule::ToolBarModule ( mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msConfigurationUpdateStartEvent, - makeAny(gnConfigurationUpdateStartEvent)); + Any(gnConfigurationUpdateStartEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msConfigurationUpdateEndEvent, - makeAny(gnConfigurationUpdateEndEvent)); + Any(gnConfigurationUpdateEndEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceActivationRequestEvent, - makeAny(gnResourceActivationRequestEvent)); + Any(gnResourceActivationRequestEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceDeactivationRequestEvent, - makeAny(gnResourceDeactivationRequestEvent)); + Any(gnResourceDeactivationRequestEvent)); } ToolBarModule::~ToolBarModule() diff --git a/sd/source/ui/framework/module/ViewTabBarModule.cxx b/sd/source/ui/framework/module/ViewTabBarModule.cxx index 3ee872bc84a0..4f5dd4828535 100644 --- a/sd/source/ui/framework/module/ViewTabBarModule.cxx +++ b/sd/source/ui/framework/module/ViewTabBarModule.cxx @@ -62,17 +62,17 @@ ViewTabBarModule::ViewTabBarModule ( mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceActivationRequestEvent, - makeAny(ResourceActivationRequestEvent)); + Any(ResourceActivationRequestEvent)); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceDeactivationRequestEvent, - makeAny(ResourceDeactivationRequestEvent)); + Any(ResourceDeactivationRequestEvent)); UpdateViewTabBar(nullptr); mxConfigurationController->addConfigurationChangeListener( this, FrameworkHelper::msResourceActivationEvent, - makeAny(ResourceActivationEvent)); + Any(ResourceActivationEvent)); } ViewTabBarModule::~ViewTabBarModule() |