sd/source/ui/inc/optsitem.hxx |    6 ------
 1 file changed, 6 deletions(-)

New commits:
commit 550e8b278082c39d61ec5a4efbf0fbca145614ab
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Tue Nov 14 11:16:01 2023 +0000
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Tue Nov 14 13:11:56 2023 +0100

    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.mcnam...@collabora.com>

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.

Reply via email to