summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 09:21:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 09:59:17 +0100
commit98f2bd667c45ad8d041673c99678e2f95a749b55 (patch)
tree4a91f1a6476d619cb398c6c1bce39f197a545ce7 /svx
parent1d69cf32a73c0720882731ebf3eb5d2f07fce246 (diff)
loplugin:unusedmethods
Remove a filtering step in the python script that was hiding some results Change-Id: Id94268f150902405ab197c077f18aaedf98845fc Reviewed-on: https://gerrit.libreoffice.org/83256 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/accessibility/ChildrenManager.cxx5
-rw-r--r--svx/source/dialog/dialcontrol.cxx5
-rw-r--r--svx/source/sidebar/text/TextCharacterSpacingControl.hxx1
-rw-r--r--svx/source/tbxctrls/tbcontrl.cxx5
-rw-r--r--svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx2
5 files changed, 0 insertions, 18 deletions
diff --git a/svx/source/accessibility/ChildrenManager.cxx b/svx/source/accessibility/ChildrenManager.cxx
index e92f7b2fdd68..e8376908bf72 100644
--- a/svx/source/accessibility/ChildrenManager.cxx
+++ b/svx/source/accessibility/ChildrenManager.cxx
@@ -60,11 +60,6 @@ css::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex)
return mpImpl->GetChild (nIndex);
}
-Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShape>& xShape)
-{
- return mpImpl->GetChild (xShape);
-}
-
css::uno::Reference<css::drawing::XShape> ChildrenManager::GetChildShape(long nIndex)
{
return mpImpl->GetChildShape(nIndex);
diff --git a/svx/source/dialog/dialcontrol.cxx b/svx/source/dialog/dialcontrol.cxx
index 6b48ef762453..1522da700c40 100644
--- a/svx/source/dialog/dialcontrol.cxx
+++ b/svx/source/dialog/dialcontrol.cxx
@@ -365,11 +365,6 @@ void DialControl::SetRotation( sal_Int32 nAngle )
SetRotation( nAngle, false );
}
-IMPL_LINK_NOARG( DialControl, LinkedFieldModifyHdl, Edit&, void )
-{
- LinkedFieldModifyHdl();
-}
-
void DialControl::LinkedFieldModifyHdl()
{
if( mpImpl->mpLinkField )
diff --git a/svx/source/sidebar/text/TextCharacterSpacingControl.hxx b/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
index 9f69bfdb7148..d246cae073b1 100644
--- a/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
+++ b/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
@@ -58,7 +58,6 @@ private:
void ExecuteCharacterSpacing(long nValue, bool bClose = true);
DECL_LINK(PredefinedValuesHdl, Button*, void);
- DECL_LINK(KerningSelectHdl, ListBox&, void);
DECL_LINK(KerningModifyHdl, Edit&, void);
MapUnit GetCoreMetric() const;
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx
index a8025d6a95dd..dfb3bbd13c7a 100644
--- a/svx/source/tbxctrls/tbcontrl.cxx
+++ b/svx/source/tbxctrls/tbcontrl.cxx
@@ -1875,11 +1875,6 @@ IMPL_LINK_NOARG(ColorWindow, FocusHdl, weld::Widget&, void)
mxColorSet->GrabFocus();
}
-void SvxColorWindow::ShowNoneButton()
-{
- mpButtonNoneColor->Show();
-}
-
void ColorWindow::ShowNoneButton()
{
mxButtonNoneColor->show();
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
index 43763ea25498..bc199263495d 100644
--- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
+++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
@@ -84,8 +84,6 @@ public:
private:
OUString getPropertyTypeName( sal_Int16 nConversionPropertyType /*linguistic2::ConversionPropertyType*/ ) const;
- DECL_LINK(ResizeHdl, const Size&, void);
-
public:
css::uno::Reference<css::linguistic2::XConversionDictionary> m_xDictionary;