From 4ed70b89aa89ff407775ede83521e9cd377159a0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 26 Jul 2017 08:29:30 +0200 Subject: loplugin:unusedfields Change-Id: I21e538b8e9c7a5f0fb233019efac37a3555e3c93 Reviewed-on: https://gerrit.libreoffice.org/40438 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/formula/formdata.hxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/formula') diff --git a/include/formula/formdata.hxx b/include/formula/formdata.hxx index 651ebbe43445..1188ab884461 100644 --- a/include/formula/formdata.hxx +++ b/include/formula/formdata.hxx @@ -48,7 +48,6 @@ public: void SetMode( sal_uInt16 nNew ) { nMode = nNew; } void SetFStart( sal_Int32 nNew ) { nFStart = nNew; } void SetOffset( sal_uInt16 nNew ) { nOffset = nNew; } - void SetEdFocus( sal_uInt16 nNew ) { nEdFocus = nNew; } void SetUndoStr( const OUString& rNew ) { aUndoStr = rNew; } void SetMatrixFlag(bool bNew) { bMatrix=bNew;} void SetFocusWindow(const VclPtr& rWin) { xFocusWin=rWin;} @@ -62,7 +61,6 @@ private: sal_uInt16 nMode; // enum ScFormulaDlgMode sal_Int32 nFStart; sal_uInt16 nOffset; - sal_uInt16 nEdFocus; OUString aUndoStr; bool bMatrix; VclPtr xFocusWin; -- cgit