diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-13 15:03:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-14 08:48:09 +0100 |
commit | c196d70337f6b755cfc4c34beda05554c6fab114 (patch) | |
tree | 233f8a3f1bfc26debc8be8aa04381125310f99c0 /include | |
parent | 527977d5cac51a9edd522d675f0ccf575d2f2dc0 (diff) |
loplugin:unusedmethods
Change-Id: Ief7cdb14e2c0fe4b0332cd90e063d649065bf3b6
Reviewed-on: https://gerrit.libreoffice.org/69171
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/checklbx.hxx | 11 | ||||
-rw-r--r-- | include/vcl/outdev.hxx | 2 | ||||
-rw-r--r-- | include/vcl/treelistbox.hxx | 1 |
3 files changed, 0 insertions, 14 deletions
diff --git a/include/svx/checklbx.hxx b/include/svx/checklbx.hxx index 2253f5d2f3a6..a10e5b999b10 100644 --- a/include/svx/checklbx.hxx +++ b/include/svx/checklbx.hxx @@ -56,24 +56,13 @@ public: virtual ~SvxCheckListBox() override; virtual void dispose() override; - void InsertEntry ( const OUString& rStr, - sal_uLong nPos = TREELIST_APPEND, - void* pUserData = nullptr, - SvLBoxButtonKind eButtonKind = SvLBoxButtonKind::EnabledCheckbox ); - void RemoveEntry ( sal_uLong nPos ); - void SelectEntryPos ( sal_uLong nPos ); sal_uLong GetSelectedEntryPos () const; - OUString GetText ( sal_uLong nPos ) const; - sal_uLong GetCheckedEntryCount() const; void CheckEntryPos ( sal_uLong nPos, bool bCheck = true ); bool IsChecked ( sal_uLong nPos ) const; void ToggleCheckButton ( SvTreeListEntry* pEntry ); - void* SetEntryData ( sal_uLong nPos, void* pNewData ); - void* GetEntryData ( sal_uLong nPos ) const; - virtual void MouseButtonDown ( const MouseEvent& rMEvt ) override; virtual void KeyInput ( const KeyEvent& rKEvt ) override; }; diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 4beb600f3e02..8e79c0f646ee 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -309,8 +309,6 @@ class VCL_DLLPUBLIC OutputDevice : public virtual VclReferenceBase friend class WorkWindow; friend void ImplHandleResize( vcl::Window* pWindow, long nNewWidth, long nNewHeight ); - friend cairo_surface_t* get_underlying_alpha_cairo_surface(const VirtualDevice&); - private: OutputDevice(const OutputDevice&) = delete; OutputDevice& operator=(const OutputDevice&) = delete; diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx index c03f300d84a1..7031c0954acd 100644 --- a/include/vcl/treelistbox.hxx +++ b/include/vcl/treelistbox.hxx @@ -615,7 +615,6 @@ public: void SetDefaultCollapsedEntryBmp( const Image& rBmp ); void SetCheckButtonState( SvTreeListEntry*, SvButtonState ); - void SetCheckButtonInvisible( SvTreeListEntry* ); SvButtonState GetCheckButtonState( SvTreeListEntry* ) const; void SetEntryText(SvTreeListEntry*, const OUString& ); |