diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-08 08:30:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-08 08:30:35 +0200 |
commit | 98be23b2e6f4e62a0d3681996cdcacb0f7fa16c4 (patch) | |
tree | 8bef444d8ea38b4ba47ecc1b5b30ba05b5667366 /sc/source/ui/navipi | |
parent | 7345a032bb6758dcbe425c911d557d0b22d7d5ec (diff) |
loplugin:vclwidgets
Change-Id: I4f11af544daa2d973ccae27c49dc0143944b9c40
Diffstat (limited to 'sc/source/ui/navipi')
-rw-r--r-- | sc/source/ui/navipi/navipi.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sc/source/ui/navipi/navipi.cxx b/sc/source/ui/navipi/navipi.cxx index e01d9e2db59a..2443250c133a 100644 --- a/sc/source/ui/navipi/navipi.cxx +++ b/sc/source/ui/navipi/navipi.cxx @@ -78,6 +78,11 @@ ColumnEdit::ColumnEdit(Window* pParent, WinBits nWinBits) SetMaxTextLen(SCNAV_COLDIGITS); // 1...256...18278 or A...IV...ZZZ } +ColumnEdit::~ColumnEdit() +{ + disposeOnce(); +} + VCL_BUILDER_DECL_FACTORY(ColumnEdit) { (void)rMap; @@ -254,6 +259,11 @@ RowEdit::RowEdit(Window* pParent, WinBits nWinBits) SetLast(SCNAV_MAXROW); } +RowEdit::~RowEdit() +{ + disposeOnce(); +} + VCL_BUILDER_DECL_FACTORY(RowEdit) { (void)rMap; |