summaryrefslogtreecommitdiff
path: root/cui/source/inc/newtabledlg.hxx
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-04-24 15:27:49 +0100
committerMichael Meeks <michael.meeks@collabora.com>2015-04-24 15:27:49 +0100
commit3592db637db2998692545bffc0b9c74b69acae40 (patch)
tree3a9da0aeed448b665b73bf0a99a49afc1ddf47a7 /cui/source/inc/newtabledlg.hxx
parentfc71bf231ee06fba9878a1ef27c997bc5e128f25 (diff)
Fix unhelpful MI from a VclPtr type and Abstract factory type.
Change-Id: Ibd8a8e22ffe2cd01225e97588d65eae1cc0bffb8
Diffstat (limited to 'cui/source/inc/newtabledlg.hxx')
-rw-r--r--cui/source/inc/newtabledlg.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/inc/newtabledlg.hxx b/cui/source/inc/newtabledlg.hxx
index f6be298f88d2..5df04b530be6 100644
--- a/cui/source/inc/newtabledlg.hxx
+++ b/cui/source/inc/newtabledlg.hxx
@@ -26,16 +26,16 @@
#include <svx/stddlg.hxx>
#include <svx/svxdlg.hxx>
-class SvxNewTableDialog : public SvxAbstractNewTableDialog, public ModalDialog
+class SvxNewTableDialog : public SvxAbstractNewTableDialog
{
private:
- VclPtr<NumericField> mpNumColumns;
- VclPtr<NumericField> mpNumRows;
+ VclPtr<ModalDialog> m_pDialog;
+ VclPtr<NumericField> mpNumColumns;
+ VclPtr<NumericField> mpNumRows;
public:
SvxNewTableDialog( vcl::Window* pWindow );
virtual ~SvxNewTableDialog();
- virtual void dispose() SAL_OVERRIDE;
virtual short Execute(void) SAL_OVERRIDE;