diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-31 12:31:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-31 19:37:29 +0100 |
commit | c599e23a92310916d4e7f09c5aaf354d63973d0b (patch) | |
tree | d1e584a33e47f3fbbfcbdfcd9c3b9a14f7fcadd2 /include | |
parent | c82efb610bf556ea12cbe4f94568ac619897799f (diff) |
loplugin:singlevalfields
Change-Id: I77ccf3f36363e182a644b98cdf720f1381a5cceb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87766
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/valueset.hxx | 5 | ||||
-rw-r--r-- | include/vcl/toolbox.hxx | 1 | ||||
-rw-r--r-- | include/vcl/treelistbox.hxx | 1 |
3 files changed, 1 insertions, 6 deletions
diff --git a/include/svtools/valueset.hxx b/include/svtools/valueset.hxx index cb0a4b501acd..221798c2aa4d 100644 --- a/include/svtools/valueset.hxx +++ b/include/svtools/valueset.hxx @@ -224,13 +224,11 @@ private: bool mbFormat : 1; bool mbHighlight : 1; - bool mbSelection : 1; bool mbNoSelection : 1; bool mbDrawSelection : 1; bool mbBlackSel : 1; bool mbDoubleSel : 1; bool mbScroll : 1; - bool mbFullMode : 1; bool mbEdgeBlending : 1; bool mbHasVisibleItems : 1; @@ -260,7 +258,7 @@ private: SVT_DLLPRIVATE tools::Rectangle ImplGetItemRect( size_t nPos ) const; SVT_DLLPRIVATE void ImplFireAccessibleEvent( short nEventId, const css::uno::Any& rOldValue, const css::uno::Any& rNewValue ); SVT_DLLPRIVATE bool ImplHasAccessibleListeners(); - SVT_DLLPRIVATE void ImplTracking( const Point& rPos, bool bRepeat ); + SVT_DLLPRIVATE void ImplTracking( const Point& rPos ); SVT_DLLPRIVATE void ImplEndTracking( const Point& rPos, bool bCancel ); DECL_DLLPRIVATE_LINK( ImplScrollHdl, ScrollBar*, void ); DECL_DLLPRIVATE_LINK( ImplTimerHdl, Timer*, void ); @@ -279,7 +277,6 @@ public: virtual void dispose() override; virtual void MouseButtonDown( const MouseEvent& rMEvt ) override; - virtual void MouseButtonUp( const MouseEvent& rMEvt ) override; virtual void MouseMove( const MouseEvent& rMEvt ) override; virtual void Tracking( const TrackingEvent& rMEvt ) override; virtual void KeyInput( const KeyEvent& rKEvt ) override; diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx index a7a9f0598c07..a0ec7f897fe1 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -125,7 +125,6 @@ private: ImplToolItems::size_type mnDockLines; sal_uInt16 mnMouseModifier; bool mbDrag:1, - mbSelection:1, mbUpper:1, mbLower:1, mbIn:1, diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx index faf89ec8e05a..b0a2c87cbc6a 100644 --- a/include/vcl/treelistbox.hxx +++ b/include/vcl/treelistbox.hxx @@ -544,7 +544,6 @@ protected: virtual void ApplySettings(vcl::RenderContext& rRenderContext) override; - sal_uInt16 GetCurrentTabPos() const; void CallImplEventListeners(VclEventId nEvent, void* pData); void ImplEditEntry( SvTreeListEntry* pEntry ); |