diff options
Diffstat (limited to 'sdext/source/presenter/PresenterFrameworkObserver.cxx')
-rw-r--r-- | sdext/source/presenter/PresenterFrameworkObserver.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sdext/source/presenter/PresenterFrameworkObserver.cxx b/sdext/source/presenter/PresenterFrameworkObserver.cxx index d35c378f3aff..b153f385acf8 100644 --- a/sdext/source/presenter/PresenterFrameworkObserver.cxx +++ b/sdext/source/presenter/PresenterFrameworkObserver.cxx @@ -29,7 +29,6 @@ namespace sdext { namespace presenter { PresenterFrameworkObserver::PresenterFrameworkObserver ( const css::uno::Reference<css::drawing::framework::XConfigurationController>&rxController, - const OUString& rsEventName, const Predicate& rPredicate, const Action& rAction) : PresenterFrameworkObserverInterfaceBase(m_aMutex), @@ -42,13 +41,6 @@ PresenterFrameworkObserver::PresenterFrameworkObserver ( if (mxConfigurationController->hasPendingRequests()) { - if (!rsEventName.isEmpty()) - { - mxConfigurationController->addConfigurationChangeListener( - this, - rsEventName, - Any()); - } mxConfigurationController->addConfigurationChangeListener( this, "ConfigurationUpdateEnd", @@ -70,7 +62,6 @@ void PresenterFrameworkObserver::RunOnUpdateEnd ( { new PresenterFrameworkObserver( rxController, - OUString(), &PresenterFrameworkObserver::True, rAction); } |