From 292560a957498bed70b625c992ec6bcf631dceb3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 17 Oct 2016 13:23:23 +0200 Subject: loplugin:unusedmethods Change-Id: Icf773925c37dde8b7404edac9864e7b10fe113b4 Reviewed-on: https://gerrit.libreoffice.org/29968 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sc/source/ui/inc/navipi.hxx | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sc/source/ui') diff --git a/sc/source/ui/inc/navipi.hxx b/sc/source/ui/inc/navipi.hxx index ac588dd5f7cd..7a21bf879643 100644 --- a/sc/source/ui/inc/navipi.hxx +++ b/sc/source/ui/inc/navipi.hxx @@ -112,10 +112,6 @@ class ColumnEdit : public SpinField public: ColumnEdit(Window* pParent, WinBits nWinBits); ~ColumnEdit() override; - void SetNavigatorDlg(ScNavigatorDlg *pNaviDlg) - { - xDlg = pNaviDlg; - } SCCOL GetCol() { return nCol; } void SetCol( SCCOL nColNo ); @@ -144,10 +140,6 @@ class RowEdit : public NumericField public: RowEdit(Window* pParent, WinBits nWinBits); ~RowEdit() override; - void SetNavigatorDlg(ScNavigatorDlg *pNaviDlg) - { - xDlg = pNaviDlg; - } SCROW GetRow() { return (SCROW)GetValue(); } void SetRow(SCROW nRow) { SetValue(nRow); } -- cgit