From ba9562d6b4d3da2f6f4bfd96d6aebf35abaa5b51 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 27 Feb 2014 11:20:04 +0000 Subject: coverity#1187866 unused bStartWithActualPage Change-Id: I62b44a640ab6f21d51613672f46cb2e612b300f3 --- sd/source/ui/inc/optsitem.hxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'sd') diff --git a/sd/source/ui/inc/optsitem.hxx b/sd/source/ui/inc/optsitem.hxx index 2cf00f02f914..076677156965 100644 --- a/sd/source/ui/inc/optsitem.hxx +++ b/sd/source/ui/inc/optsitem.hxx @@ -222,7 +222,6 @@ private: sal_Bool bPickThrough : 1; // Misc/TextObject/Selectable sal_Bool bDoubleClickTextEdit : 1; // Misc/DclickTextedit sal_Bool bClickChangeRotation : 1; // Misc/RotateClick - sal_Bool bStartWithActualPage : 1; // Misc/Start/CurrentPage sal_Bool bEnableSdremote : 1; // Misc/Start/EnableSdremote sal_Bool bEnablePresenterScreen : 1; // Misc/Start/EnablePresenterDisplay sal_Bool bSolidDragging : 1; // Misc/ModifyWithAttributes @@ -311,7 +310,6 @@ public: void SetPickThrough( sal_Bool bOn = sal_True ) { if( bPickThrough != bOn ) { OptionsChanged(); bPickThrough = bOn; } } void SetDoubleClickTextEdit( sal_Bool bOn = sal_True ) { if( bDoubleClickTextEdit != bOn ) { OptionsChanged(); bDoubleClickTextEdit = bOn; } } void SetClickChangeRotation( sal_Bool bOn = sal_True ) { if( bClickChangeRotation != bOn ) { OptionsChanged(); bClickChangeRotation = bOn; } } - void SetStartWithActualPage( sal_Bool bOn = sal_True ) { if( bStartWithActualPage != bOn ) { OptionsChanged(); bStartWithActualPage = bOn; } } void SetEnableSdremote( sal_Bool bOn = sal_True ) { if( bEnableSdremote != bOn ) { OptionsChanged(); bEnableSdremote = bOn; } } void SetEnablePresenterScreen( sal_Bool bOn = sal_True ) { if( bEnablePresenterScreen != bOn ) { OptionsChanged(); bEnablePresenterScreen = bOn; } } void SetSummationOfParagraphs( sal_Bool bOn = sal_True ){ if ( bOn != bSummationOfParagraphs ) { OptionsChanged(); bSummationOfParagraphs = bOn; } } -- cgit