summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_theextmgr.hxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_theextmgr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_theextmgr.hxx b/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
index 3437249efd81..5db21a5a40ca 100644
--- a/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
+++ b/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
@@ -55,7 +55,7 @@ private:
css::uno::Reference< css::awt::XWindow > m_xParent;
VclPtr<ExtMgrDialog> m_pExtMgrDialog;
VclPtr<UpdateRequiredDialog> m_pUpdReqDialog;
- ExtensionCmdQueue *m_pExecuteCmdQueue;
+ std::unique_ptr<ExtensionCmdQueue> m_pExecuteCmdQueue;
OUString m_sGetExtensionsURL;
bool m_bModified;
@@ -85,7 +85,7 @@ public:
return m_pExtMgrDialog.get();
return m_pUpdReqDialog.get();
}
- ExtensionCmdQueue* getCmdQueue() const { return m_pExecuteCmdQueue; }
+ ExtensionCmdQueue* getCmdQueue() const { return m_pExecuteCmdQueue.get(); }
void SetText( const OUString &rTitle );
void Show();