diff options
Diffstat (limited to 'sc/source/ui/inc/mvtabdlg.hxx')
-rw-r--r-- | sc/source/ui/inc/mvtabdlg.hxx | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sc/source/ui/inc/mvtabdlg.hxx b/sc/source/ui/inc/mvtabdlg.hxx index 0087e42927e6..cef3d5f8160b 100644 --- a/sc/source/ui/inc/mvtabdlg.hxx +++ b/sc/source/ui/inc/mvtabdlg.hxx @@ -32,6 +32,7 @@ class ScMoveTableDlg : public ModalDialog public: ScMoveTableDlg(vcl::Window* pParent, const OUString& rDefault); virtual ~ScMoveTableDlg(); + virtual void dispose() SAL_OVERRIDE; sal_uInt16 GetSelectedDocument () const { return nDocument; } SCTAB GetSelectedTable () const { return nTable; } @@ -49,13 +50,13 @@ private: bool IsCurrentDocSelected() const; private: - RadioButton* pBtnMove; - RadioButton* pBtnCopy; - ListBox* pLbDoc; - ListBox* pLbTable; - Edit* pEdTabName; - FixedText* pFtWarn; - OKButton* pBtnOk; + VclPtr<RadioButton> pBtnMove; + VclPtr<RadioButton> pBtnCopy; + VclPtr<ListBox> pLbDoc; + VclPtr<ListBox> pLbTable; + VclPtr<Edit> pEdTabName; + VclPtr<FixedText> pFtWarn; + VclPtr<OKButton> pBtnOk; OUString msCurrentDoc; OUString msNewDoc; |