diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-05-09 13:00:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-05-09 14:31:12 +0200 |
commit | 7f6d5dfb2244468e2faa7be05d4258692c6e84dc (patch) | |
tree | 8c03b0980c003a66f2a2683920c1557a3ada6e8e /vcl | |
parent | b4009daccd11e416865efd5fd3c205c46691bb12 (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 'vcl')
-rw-r--r-- | vcl/inc/printdlg.hxx | 1 | ||||
-rw-r--r-- | vcl/source/control/combobox.cxx | 5 | ||||
-rw-r--r-- | vcl/source/treelist/viewdataentry.cxx | 5 | ||||
-rw-r--r-- | vcl/source/window/printdlg.cxx | 6 |
4 files changed, 0 insertions, 17 deletions
diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx index 33bbb790fdd3..0fbfcb62bcc1 100644 --- a/vcl/inc/printdlg.hxx +++ b/vcl/inc/printdlg.hxx @@ -269,7 +269,6 @@ namespace vcl bool isCanceled() const { return mbCanceled; } void setProgress( int i_nCurrent ); void tick(); - void reset(); }; } diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index 0b5ad0ad624a..ddb644658a12 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -516,11 +516,6 @@ void ComboBox::EnableSelectAll() { m_pImpl->m_pSubEdit->SetSelectAllSingleClick(true); } -void ComboBox::EnableDDAutoWidth( bool b ) -{ - if (m_pImpl->m_pFloatWin) - m_pImpl->m_pFloatWin->SetAutoWidth( b ); -} void ComboBox::SetDropDownLineCount( sal_uInt16 nLines ) { diff --git a/vcl/source/treelist/viewdataentry.cxx b/vcl/source/treelist/viewdataentry.cxx index 855108d3e5e9..76a3fc7e3c7e 100644 --- a/vcl/source/treelist/viewdataentry.cxx +++ b/vcl/source/treelist/viewdataentry.cxx @@ -61,11 +61,6 @@ void SvViewDataEntry::SetSelected( bool bSelected ) mbHighlighted = bSelected; } -void SvViewDataEntry::SetHighlighted( bool bHighlighted ) -{ - mbHighlighted = bHighlighted; -} - void SvViewDataEntry::SetExpanded( bool bExpanded ) { mbExpanded = bExpanded; diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx index 9ece9c929ffd..c1365e887526 100644 --- a/vcl/source/window/printdlg.cxx +++ b/vcl/source/window/printdlg.cxx @@ -2184,9 +2184,3 @@ void PrintProgressDialog::tick() if( mnCur < mnMax ) setProgress( ++mnCur ); } - -void PrintProgressDialog::reset() -{ - mbCanceled = false; - setProgress( 0 ); -} |