summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/cellsh.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/cellsh.hxx')
-rw-r--r--sc/source/ui/inc/cellsh.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/source/ui/inc/cellsh.hxx b/sc/source/ui/inc/cellsh.hxx
index d3fa6a0bc05a..2201e03f0bf5 100644
--- a/sc/source/ui/inc/cellsh.hxx
+++ b/sc/source/ui/inc/cellsh.hxx
@@ -38,13 +38,15 @@ class AbstractScLinkedAreaDlg;
struct CellShell_Impl
{
TransferableClipboardListener* m_pClipEvtLstnr;
- AbstractScLinkedAreaDlg* m_pLinkedDlg;
+ VclPtr<AbstractScLinkedAreaDlg> m_pLinkedDlg;
SfxRequest* m_pRequest;
CellShell_Impl() :
m_pClipEvtLstnr( nullptr ),
- m_pLinkedDlg( nullptr ),
+ m_pLinkedDlg(),
m_pRequest( nullptr ) {}
+
+ ~CellShell_Impl();
};
class ScCellShell: public ScFormatShell