diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-06-18 10:32:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-06-18 13:43:05 +0200 |
commit | 294e66018d5c461c3f49e2140aac7e56f3ee99dc (patch) | |
tree | f82492339f418b518f7f52d7a0c4bcab9773455f /include/sfx2 | |
parent | 4b6d1715929110f004e8a9dee971add94d72e165 (diff) |
weld SfxDocumentDescPage
Change-Id: I52abfe33e39fbb2e96fe0634b9ac3d8d50068ee7
Reviewed-on: https://gerrit.libreoffice.org/55988
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 2e61a28583ee..66c5726e8eca 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -225,21 +225,20 @@ public: class SfxDocumentDescPage : public SfxTabPage { private: - VclPtr<Edit> m_pTitleEd; - VclPtr<Edit> m_pThemaEd; - VclPtr<Edit> m_pKeywordsEd; - VclPtr<VclMultiLineEdit> m_pCommentEd; - SfxDocumentInfoItem* m_pInfoItem; + SfxDocumentInfoItem* m_pInfoItem; + std::unique_ptr<weld::Entry> m_xTitleEd; + std::unique_ptr<weld::Entry> m_xThemaEd; + std::unique_ptr<weld::Entry> m_xKeywordsEd; + std::unique_ptr<weld::TextView> m_xCommentEd; protected: virtual ~SfxDocumentDescPage() override; - virtual void dispose() override; virtual bool FillItemSet( SfxItemSet* ) override; virtual void Reset( const SfxItemSet* ) override; public: - SfxDocumentDescPage( vcl::Window* pParent, const SfxItemSet& ); + SfxDocumentDescPage(TabPageParent pParent, const SfxItemSet&); static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* ); }; |