diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-14 09:24:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-14 10:12:31 +0200 |
commit | d7e06e46acc2ee17101cef63e59b9f5efcbfab14 (patch) | |
tree | 7f2ee4381babadafaaaf94e1ca210e1d98e5aa14 /sd/source/ui/slideshow/PaneHider.cxx | |
parent | e47fda7d4759f4ac911c882881dba1eee539726c (diff) |
use more OUString::operator== in scaddins..sdext
Change-Id: I8bc5c925f940283bc54698bbcba77efcca883273
Reviewed-on: https://gerrit.libreoffice.org/39937
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/slideshow/PaneHider.cxx')
-rw-r--r-- | sd/source/ui/slideshow/PaneHider.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slideshow/PaneHider.cxx b/sd/source/ui/slideshow/PaneHider.cxx index 09094687b3d5..03eb26d69b87 100644 --- a/sd/source/ui/slideshow/PaneHider.cxx +++ b/sd/source/ui/slideshow/PaneHider.cxx @@ -65,7 +65,7 @@ PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow) for (sal_Int32 nIndex=0; nIndex<aResources.getLength(); ++nIndex) { Reference<XResourceId> xPaneId (aResources[nIndex]); - if ( ! xPaneId->getResourceURL().equals(FrameworkHelper::msCenterPaneURL)) + if ( xPaneId->getResourceURL() != FrameworkHelper::msCenterPaneURL ) { mxConfigurationController->requestResourceDeactivation(xPaneId); } |