diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-11-14 11:16:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-11-14 13:11:56 +0100 |
commit | 550e8b278082c39d61ec5a4efbf0fbca145614ab (patch) | |
tree | 7d2d6ae4f06731637cb34f327c21a8d4bc078dd4 /sd | |
parent | 5767cb0eaf9ac69ccc0bfb8944cbf931a1f80728 (diff) |
cid#1550047 Uninitialized scalar field
left overs since:
commit 7ca9c5bd2e2e3cda5686b7b8f5b657161eb52cdd
Date: Thu Nov 2 15:49:49 2023 +0100
Move "Enable Impress Remote" setting to presentation settings
commit e0334e1a77ec080b38952ea64b394c8652af851c
Date: Thu Nov 2 13:43:38 2023 +0100
tdf#157788 Move "Show navigation panel" back to Presentation settings
Change-Id: I8e33930a8c44b9de6ccf7424a169628008556acb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159408
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/optsitem.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sd/source/ui/inc/optsitem.hxx b/sd/source/ui/inc/optsitem.hxx index e406f2692e60..9ec3d4a1b58b 100644 --- a/sd/source/ui/inc/optsitem.hxx +++ b/sd/source/ui/inc/optsitem.hxx @@ -195,8 +195,6 @@ private: bool bPickThrough : 1; // Misc/TextObject/Selectable bool bDoubleClickTextEdit : 1; // Misc/DclickTextedit bool bClickChangeRotation : 1; // Misc/RotateClick - bool bEnableSdremote : 1; // Misc/Start/EnableSdremote - bool bPresenterScreenFullScreen : 1; // Misc/Start/PresenterScreenFullScreen bool bSolidDragging : 1; // Misc/ModifyWithAttributes bool bSummationOfParagraphs : 1; // misc/SummationOfParagraphs bool bTabBarVisible : 1; // Misc/TabBarVisible @@ -247,8 +245,6 @@ public: bool IsPickThrough() const { Init(); return bPickThrough; } bool IsDoubleClickTextEdit() const { Init(); return bDoubleClickTextEdit; } bool IsClickChangeRotation() const { Init(); return bClickChangeRotation; } - bool IsEnableSdremote() const { Init(); return bEnableSdremote; } - bool IsPresenterScreenFullScreen() const { Init(); return bPresenterScreenFullScreen; } bool IsSolidDragging() const { Init(); return bSolidDragging; } bool IsSummationOfParagraphs() const { Init(); return bSummationOfParagraphs; }; bool IsTabBarVisible() const { Init(); return bTabBarVisible; }; @@ -290,8 +286,6 @@ public: void SetPickThrough( bool bOn ) { if( bPickThrough != bOn ) { OptionsChanged(); bPickThrough = bOn; } } void SetDoubleClickTextEdit( bool bOn ) { if( bDoubleClickTextEdit != bOn ) { OptionsChanged(); bDoubleClickTextEdit = bOn; } } void SetClickChangeRotation( bool bOn ) { if( bClickChangeRotation != bOn ) { OptionsChanged(); bClickChangeRotation = bOn; } } - void SetEnableSdremote( bool bOn ) { if( bEnableSdremote != bOn ) { OptionsChanged(); bEnableSdremote = bOn; } } - void SetPresenterScreenFullScreen( bool bOn ) { if ( bPresenterScreenFullScreen != bOn) { OptionsChanged(); bPresenterScreenFullScreen = bOn; } } void SetSummationOfParagraphs( bool bOn ){ if ( bOn != bSummationOfParagraphs ) { OptionsChanged(); bSummationOfParagraphs = bOn; } } void SetTabBarVisible( bool bOn ){ if ( bOn != bTabBarVisible ) { OptionsChanged(); bTabBarVisible = bOn; } } /** Set the printer independent layout mode. |