summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-05-09 13:00:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-05-09 14:31:12 +0200
commit7f6d5dfb2244468e2faa7be05d4258692c6e84dc (patch)
tree8c03b0980c003a66f2a2683920c1557a3ada6e8e /include/vcl
parentb4009daccd11e416865efd5fd3c205c46691bb12 (diff)
loplugin:unusedmethods
Change-Id: I7b4d2e5e611935284e2902b0089950768dfb7717 Reviewed-on: https://gerrit.libreoffice.org/72036 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/builder.hxx4
-rw-r--r--include/vcl/combobox.hxx2
-rw-r--r--include/vcl/scrbar.hxx1
-rw-r--r--include/vcl/treelistbox.hxx2
-rw-r--r--include/vcl/viewdataentry.hxx1
5 files changed, 0 insertions, 10 deletions
diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx
index 5fdb061f7b1e..2fa8f445199f 100644
--- a/include/vcl/builder.hxx
+++ b/include/vcl/builder.hxx
@@ -481,10 +481,6 @@ public:
{
return m_pUIBuilder->get<T>(sID);
}
- PopupMenu* get_menu(const OString & sID)
- {
- return m_pUIBuilder->get_menu(sID);
- }
void setDeferredProperties()
{
if (!m_pUIBuilder)
diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx
index 1571cca6961e..0080e39dfda5 100644
--- a/include/vcl/combobox.hxx
+++ b/include/vcl/combobox.hxx
@@ -78,8 +78,6 @@ public:
void EnableAutoSize( bool bAuto );
bool IsAutoSizeEnabled() const;
- void EnableDDAutoWidth( bool b );
-
virtual void SetText( const OUString& rStr ) override;
virtual void SetText( const OUString& rStr, const Selection& rNewSelection ) override;
diff --git a/include/vcl/scrbar.hxx b/include/vcl/scrbar.hxx
index e900b26b152e..8a2fffac0321 100644
--- a/include/vcl/scrbar.hxx
+++ b/include/vcl/scrbar.hxx
@@ -132,7 +132,6 @@ public:
void SetScrollHdl( const Link<ScrollBar*,void>& rLink ) { maScrollHdl = rLink; }
const Link<ScrollBar*,void>& GetScrollHdl() const { return maScrollHdl; }
void SetEndScrollHdl( const Link<ScrollBar*,void>& rLink ) { maEndScrollHdl = rLink; }
- const Link<ScrollBar*,void>& GetEndScrollHdl() const { return maEndScrollHdl; }
virtual Size GetOptimalSize() const override;
};
diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx
index f99219d5f1ff..2f855e0a4b7b 100644
--- a/include/vcl/treelistbox.hxx
+++ b/include/vcl/treelistbox.hxx
@@ -437,8 +437,6 @@ public:
void SetSelectHdl( const Link<SvTreeListBox*,void>& rNewHdl ) {aSelectHdl=rNewHdl; }
void SetDeselectHdl( const Link<SvTreeListBox*,void>& rNewHdl ) {aDeselectHdl=rNewHdl; }
void SetDoubleClickHdl(const Link<SvTreeListBox*,bool>& rNewHdl) {aDoubleClickHdl=rNewHdl;}
- const Link<SvTreeListBox*,void>& GetSelectHdl() const { return aSelectHdl; }
- const Link<SvTreeListBox*,void>& GetDeselectHdl() const { return aDeselectHdl; }
const Link<SvTreeListBox*,bool>& GetDoubleClickHdl() const { return aDoubleClickHdl; }
void SetExpandingHdl(const Link<SvTreeListBox*,bool>& rNewHdl){aExpandingHdl=rNewHdl;}
void SetExpandedHdl(const Link<SvTreeListBox*,void>& rNewHdl){aExpandedHdl=rNewHdl;}
diff --git a/include/vcl/viewdataentry.hxx b/include/vcl/viewdataentry.hxx
index 8bf5c6a30b8a..5cbed9d6e3ea 100644
--- a/include/vcl/viewdataentry.hxx
+++ b/include/vcl/viewdataentry.hxx
@@ -68,7 +68,6 @@ public:
bool IsDragTarget() const { return mbDragTarget;}
void SetFocus( bool bFocus );
void SetSelected( bool bSelected );
- void SetHighlighted( bool bHighlighted );
void SetExpanded( bool bExpanded );
void SetSelectable( bool bSelectable );
void SetDragTarget( bool bDragTarget )