summaryrefslogtreecommitdiff
path: root/sd/source/ui/slideshow
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-09-11 11:22:17 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-09-11 17:11:12 +0200
commit6928f43c86d05b9229e24d6d199b3f139031d596 (patch)
tree044dadef89408856888da0684b62209a6e9da315 /sd/source/ui/slideshow
parent69c9acd0d275fba2b387bd64584227f5ffcfce0d (diff)
-Werror,-Wunused-private-field (various sd)
Change-Id: Ib0756e3730783f2c842a835782452279ad8f189b
Diffstat (limited to 'sd/source/ui/slideshow')
-rw-r--r--sd/source/ui/slideshow/PaneHider.cxx5
-rw-r--r--sd/source/ui/slideshow/PaneHider.hxx3
2 files changed, 1 insertions, 7 deletions
diff --git a/sd/source/ui/slideshow/PaneHider.cxx b/sd/source/ui/slideshow/PaneHider.cxx
index b12c28c66eff..c87f7532279d 100644
--- a/sd/source/ui/slideshow/PaneHider.cxx
+++ b/sd/source/ui/slideshow/PaneHider.cxx
@@ -42,10 +42,7 @@ using ::com::sun::star::lang::DisposedException;
namespace sd {
PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
- : mrViewShell(rViewShell),
- mbWindowVisibilitySaved(false),
- mbOriginalLeftPaneWindowVisibility(false),
- mbOriginalRightPaneWindowVisibility(false)
+ : mrViewShell(rViewShell)
{
// Hide the left and right pane windows when a slideshow exists and is
// not full screen.
diff --git a/sd/source/ui/slideshow/PaneHider.hxx b/sd/source/ui/slideshow/PaneHider.hxx
index 1ca85b48e696..1b0422b67293 100644
--- a/sd/source/ui/slideshow/PaneHider.hxx
+++ b/sd/source/ui/slideshow/PaneHider.hxx
@@ -50,9 +50,6 @@ private:
/** Remember whether the visibility states of the windows of the panes
has been modified and have to be restored.
*/
- bool mbWindowVisibilitySaved;
- bool mbOriginalLeftPaneWindowVisibility;
- bool mbOriginalRightPaneWindowVisibility;
::com::sun::star::uno::Reference<com::sun::star::drawing::framework::XConfigurationController>
mxConfigurationController;