summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 09:44:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 11:46:44 +0100
commit3525b4e098290af9953e4be571e242598fcc0a49 (patch)
tree7e5fd269be6226f9c743392b1127fa9a13347d22 /include
parent843ec02fcbc6e1dbc0fbac7e0ee90fd6177711e7 (diff)
loplugin:unusedmethods
Change-Id: I085394e0f4b780dc5b376d5ac0e9d761434e3ead Reviewed-on: https://gerrit.libreoffice.org/68301 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svtools/simptabl.hxx3
-rw-r--r--include/svx/langbox.hxx1
-rw-r--r--include/svx/txencbox.hxx2
-rw-r--r--include/unotools/confignode.hxx1
-rw-r--r--include/vcl/ctrl.hxx1
5 files changed, 0 insertions, 8 deletions
diff --git a/include/svtools/simptabl.hxx b/include/svtools/simptabl.hxx
index b853a21fd497..d73ad7bfcfa6 100644
--- a/include/svtools/simptabl.hxx
+++ b/include/svtools/simptabl.hxx
@@ -55,7 +55,6 @@ class SVT_DLLPUBLIC SvSimpleTable : public SvHeaderTabListBox
private:
SvSimpleTableContainer& m_rParentTableContainer;
- Link<SvSimpleTable*, void> aHeaderBarClickLink;
Link<SvSimpleTable*, void> aCommandLink;
CommandEvent aCEvt;
VclPtr<HeaderBar> aHeaderBar;
@@ -109,7 +108,6 @@ public:
void DisableTable();
bool IsEnabled() const;
- sal_uInt16 GetSelectedCol();
void SortByCol(sal_uInt16, bool bDir=true);
bool GetSortDirection(){ return bSortDirection;}
sal_uInt16 GetSortedCol(){ return nSortCol;}
@@ -119,7 +117,6 @@ public:
bool IsFocusOnCellEnabled() const { return IsCellFocusEnabled(); }
void SetCommandHdl( const Link<SvSimpleTable*,void>& rLink ) { aCommandLink = rLink; }
- void SetHeaderBarClickHdl( const Link<SvSimpleTable*,void>& rLink ) { aHeaderBarClickLink = rLink; }
HeaderBar& GetTheHeaderBar() { return *aHeaderBar; }
};
diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx
index d707f84a6052..0ec67c78ac44 100644
--- a/include/svx/langbox.hxx
+++ b/include/svx/langbox.hxx
@@ -68,7 +68,6 @@ public:
void InsertSystemLanguage();
void InsertLanguage( const LanguageType eLangType,
bool bCheckEntry );
- void RemoveLanguage( const LanguageType eLangType );
void SelectLanguage( const LanguageType eLangType );
LanguageType GetSelectedLanguage() const;
bool IsLanguageSelected( const LanguageType eLangType ) const;
diff --git a/include/svx/txencbox.hxx b/include/svx/txencbox.hxx
index f2edcb83f6d5..0bc69c2a537d 100644
--- a/include/svx/txencbox.hxx
+++ b/include/svx/txencbox.hxx
@@ -59,8 +59,6 @@ public:
*/
void FillWithMimeAndSelectBest();
- void InsertTextEncoding( const rtl_TextEncoding nEnc );
-
void InsertTextEncoding( const rtl_TextEncoding nEnc,
const OUString& rEntry );
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx
index bc4937e181a7..bde22e9ff04b 100644
--- a/include/unotools/confignode.hxx
+++ b/include/unotools/confignode.hxx
@@ -149,7 +149,6 @@ namespace utl
/// checks whether or not a direct child with a given name exists
bool hasByName(const OUString& _rName) const throw();
- bool hasByName( const sal_Char* _pAsciiName ) const { return hasByName( OUString::createFromAscii( _pAsciiName ) ); }
/// checks whether or not a descendent (no matter if direct or indirect) with the given name exists
bool hasByHierarchicalName( const OUString& _rName ) const throw();
diff --git a/include/vcl/ctrl.hxx b/include/vcl/ctrl.hxx
index 391c576ddff3..d3c5962741e0 100644
--- a/include/vcl/ctrl.hxx
+++ b/include/vcl/ctrl.hxx
@@ -164,7 +164,6 @@ public:
void SetGetFocusHdl( const Link<Control&,void>& rLink ) { maGetFocusHdl = rLink; }
void SetLoseFocusHdl( const Link<Control&,void>& rLink ) { maLoseFocusHdl = rLink; }
- const Link<Control&,void>& GetLoseFocusHdl() const { return maLoseFocusHdl; }
/** determines whether the control currently has the focus
*/