diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-18 09:01:15 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-01-18 08:37:10 +0000 |
commit | aa6c54f337a616c9ca6a39cfc8708657018d8613 (patch) | |
tree | 8160f15358286e611441bafe736c95f1238f4b60 /sw/source | |
parent | 0533b155354f086aa8dc1de06c7db92d3f3be4f5 (diff) |
loplugin:unusedfields
Change-Id: I321b594f1190cdd997b4769161e1c02d31f46213
Reviewed-on: https://gerrit.libreoffice.org/21566
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/crsr/crbm.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sw/source/core/crsr/crbm.cxx b/sw/source/core/crsr/crbm.cxx index 91b6f3f10617..89afac38c7c2 100644 --- a/sw/source/core/crsr/crbm.cxx +++ b/sw/source/core/crsr/crbm.cxx @@ -33,8 +33,7 @@ namespace struct CursorStateHelper { explicit CursorStateHelper(SwCursorShell& rShell) - : m_aLink(rShell) - , m_pCursor(rShell.GetSwCursor()) + : m_pCursor(rShell.GetSwCursor()) , m_aSaveState(*m_pCursor) { } @@ -61,7 +60,6 @@ namespace return false; } - SwCallLink m_aLink; SwCursor* m_pCursor; SwCursorSaveState m_aSaveState; }; |