diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-24 13:09:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-24 22:16:24 +0200 |
commit | 7e4a3eee79b49216696f8c51bf833eee3e06a803 (patch) | |
tree | 9a6ceee7e11d2ceeb402303e4cf696c86defd05a /include | |
parent | efa19c9a5004699d844d108e2bf0dce845d48959 (diff) |
loplugin:unusedmethods
Change-Id: Ib724da1f07be9e8f4d0d505f7f2886990cab661f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97022
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/builder.hxx | 2 | ||||
-rw-r--r-- | include/vcl/treelistbox.hxx | 2 | ||||
-rw-r--r-- | include/vcl/treelistentry.hxx | 2 | ||||
-rw-r--r-- | include/vcl/vclevent.hxx | 11 | ||||
-rw-r--r-- | include/vcl/window.hxx | 1 |
5 files changed, 0 insertions, 18 deletions
diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx index c135af4f150e..cdc877939b3f 100644 --- a/include/vcl/builder.hxx +++ b/include/vcl/builder.hxx @@ -233,8 +233,6 @@ private: static void mungeAdjustment(NumericFormatter &rTarget, const Adjustment &rAdjustment); static void mungeAdjustment(FormattedField &rTarget, const Adjustment &rAdjustment); - static void mungeAdjustment(DateField &rTarget, const Adjustment &rAdjustment); - static void mungeAdjustment(TimeField &rTarget, const Adjustment &rAdjustment); static void mungeAdjustment(ScrollBar &rTarget, const Adjustment &rAdjustment); static void mungeAdjustment(Slider &rTarget, const Adjustment &rAdjustment); diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx index 1fe73c689610..202df1206a19 100644 --- a/include/vcl/treelistbox.hxx +++ b/include/vcl/treelistbox.hxx @@ -195,7 +195,6 @@ class VCL_DLLPUBLIC SvTreeListBox friend class SalInstanceEntryTreeView; std::unique_ptr<SvTreeListBoxImpl> mpImpl; - Link<SvTreeListBox*,void> aCheckButtonHdl; Link<SvTreeListBox*,void> aScrolledHdl; Link<SvTreeListBox*,void> aExpandedHdl; Link<SvTreeListBox*,bool> aExpandingHdl; @@ -617,7 +616,6 @@ public: static const Image& GetExpandedEntryBmp(const SvTreeListEntry* _pEntry ); static const Image& GetCollapsedEntryBmp(const SvTreeListEntry* _pEntry ); - void SetCheckButtonHdl( const Link<SvTreeListBox*,void>& rLink ) { aCheckButtonHdl=rLink; } virtual void CheckButtonHdl(); void SetSublistOpenWithLeftRight(); // open/close sublist with cursor left/right diff --git a/include/vcl/treelistentry.hxx b/include/vcl/treelistentry.hxx index 093fa1751d8e..14a4dc486f44 100644 --- a/include/vcl/treelistentry.hxx +++ b/include/vcl/treelistentry.hxx @@ -121,8 +121,6 @@ public: void SetExtraIndent(sal_uInt32 nExtraIndent) { mnExtraIndent = nExtraIndent; } sal_uInt32 GetExtraIndent() const { return mnExtraIndent; } - SvTreeListEntry* GetParent() const { return pParent; } - SvTreeListEntry* NextSibling() const; SvTreeListEntry* PrevSibling() const; SvTreeListEntry* LastSibling() const; diff --git a/include/vcl/vclevent.hxx b/include/vcl/vclevent.hxx index 170cd40ec65f..2daa23468bb7 100644 --- a/include/vcl/vclevent.hxx +++ b/include/vcl/vclevent.hxx @@ -216,17 +216,6 @@ public: sal_uInt16 GetItemPos() const { return mnPos; } }; -class VCL_DLLPUBLIC VclAccessibleEvent final : public VclSimpleEvent -{ -public: - VclAccessibleEvent( VclEventId n, const css::uno::Reference< css::accessibility::XAccessible >& rxAccessible ); - virtual ~VclAccessibleEvent() override; - const css::uno::Reference< css::accessibility::XAccessible >& GetAccessible() const { return mxAccessible;} - -private: - css::uno::Reference< css::accessibility::XAccessible > mxAccessible; -}; - #endif // INCLUDED_VCL_VCLEVENT_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 30bac38c6d84..0ba3dc325b83 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -738,7 +738,6 @@ protected: void SetCompoundControl( bool bCompound ); void CallEventListeners( VclEventId nEvent, void* pData = nullptr ); - static void FireVclEvent( VclSimpleEvent& rEvent ); virtual bool AcquireGraphics() const override; virtual void ReleaseGraphics( bool bRelease = true ) override; |