Kaydet (Commit) ff643eb3 authored tarafından Caolán McNamara's avatar Caolán McNamara

m_pLine is always unset

Change-Id: I269081ed0abcad09b66331d7fc1589e16556bd27
Reviewed-on: https://gerrit.libreoffice.org/61801
Tested-by: Jenkins
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 992ed5bd
...@@ -40,7 +40,6 @@ class OKButton; ...@@ -40,7 +40,6 @@ class OKButton;
class CancelButton; class CancelButton;
class HelpButton; class HelpButton;
class Button; class Button;
class FixedLine;
// class SfxModalDialog -------------------------------------------------- // class SfxModalDialog --------------------------------------------------
...@@ -153,7 +152,6 @@ public: ...@@ -153,7 +152,6 @@ public:
struct SingleTabDlgImpl struct SingleTabDlgImpl
{ {
VclPtr<SfxTabPage> m_pSfxPage; VclPtr<SfxTabPage> m_pSfxPage;
VclPtr<FixedLine> m_pLine;
SingleTabDlgImpl(); SingleTabDlgImpl();
}; };
......
...@@ -46,8 +46,7 @@ using namespace ::com::sun::star::uno; ...@@ -46,8 +46,7 @@ using namespace ::com::sun::star::uno;
#define USERITEM_NAME "UserItem" #define USERITEM_NAME "UserItem"
SingleTabDlgImpl::SingleTabDlgImpl() SingleTabDlgImpl::SingleTabDlgImpl()
: m_pSfxPage(nullptr) : m_pSfxPage(nullptr)
, m_pLine(nullptr)
{ {
} }
...@@ -664,7 +663,6 @@ SfxSingleTabDialog::~SfxSingleTabDialog() ...@@ -664,7 +663,6 @@ SfxSingleTabDialog::~SfxSingleTabDialog()
void SfxSingleTabDialog::dispose() void SfxSingleTabDialog::dispose()
{ {
pImpl->m_pSfxPage.disposeAndClear(); pImpl->m_pSfxPage.disposeAndClear();
pImpl->m_pLine.disposeAndClear();
pImpl.reset(); pImpl.reset();
pOKBtn.clear(); pOKBtn.clear();
pCancelBtn.clear(); pCancelBtn.clear();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment