summaryrefslogtreecommitdiff
path: root/sd/source/ui/slideshow/PaneHider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slideshow/PaneHider.cxx')
-rw-r--r--sd/source/ui/slideshow/PaneHider.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/slideshow/PaneHider.cxx b/sd/source/ui/slideshow/PaneHider.cxx
index 98b260c8f774..079633271e89 100644
--- a/sd/source/ui/slideshow/PaneHider.cxx
+++ b/sd/source/ui/slideshow/PaneHider.cxx
@@ -39,7 +39,6 @@ using ::com::sun::star::lang::DisposedException;
namespace sd {
PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
- : mrViewShell(rViewShell)
{
// Hide the left and right pane windows when a slideshow exists and is
// not full screen.
@@ -49,7 +48,7 @@ PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
try
{
Reference<XControllerManager> xControllerManager (
- mrViewShell.GetViewShellBase().GetController(), UNO_QUERY_THROW);
+ rViewShell.GetViewShellBase().GetController(), UNO_QUERY_THROW);
mxConfigurationController = xControllerManager->getConfigurationController();
if (mxConfigurationController.is())
{
@@ -72,7 +71,7 @@ PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
}
}
}
- FrameworkHelper::Instance(mrViewShell.GetViewShellBase())->WaitForUpdate();
+ FrameworkHelper::Instance(rViewShell.GetViewShellBase())->WaitForUpdate();
}
catch (RuntimeException&)
{