diff options
Diffstat (limited to 'sd/source/ui/tools/EventMultiplexer.cxx')
-rw-r--r-- | sd/source/ui/tools/EventMultiplexer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/tools/EventMultiplexer.cxx b/sd/source/ui/tools/EventMultiplexer.cxx index 6496ac33f805..8a7597395b09 100644 --- a/sd/source/ui/tools/EventMultiplexer.cxx +++ b/sd/source/ui/tools/EventMultiplexer.cxx @@ -531,7 +531,7 @@ void SAL_CALL EventMultiplexer::Implementation::notifyConfigurationChange ( } // Add selection change listener at slide sorter. - if (rEvent.ResourceId->getResourceURL().equals(FrameworkHelper::msSlideSorterURL)) + if (rEvent.ResourceId->getResourceURL() == FrameworkHelper::msSlideSorterURL) { slidesorter::SlideSorterViewShell* pViewShell = dynamic_cast<slidesorter::SlideSorterViewShell*>( @@ -557,7 +557,7 @@ void SAL_CALL EventMultiplexer::Implementation::notifyConfigurationChange ( // Remove selection change listener from slide sorter. Add // selection change listener at slide sorter. - if (rEvent.ResourceId->getResourceURL().equals(FrameworkHelper::msSlideSorterURL)) + if (rEvent.ResourceId->getResourceURL() == FrameworkHelper::msSlideSorterURL) { slidesorter::SlideSorterViewShell* pViewShell = dynamic_cast<slidesorter::SlideSorterViewShell*>( |