diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-17 12:30:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-17 18:14:58 +0200 |
commit | c090d2fc981d237a5591a51a94674a35835b706d (patch) | |
tree | 217d366c270f535f43b0f15af02eed0e0854e57d /cui/source/inc/srchxtra.hxx | |
parent | 88582ebee383c63c3fba588924f36ff7655af9c1 (diff) |
weld SvxSearchFormatDialog
Change-Id: Iefe6c616dc5f6bd525ed9708785846626f43c9b6
Reviewed-on: https://gerrit.libreoffice.org/60579
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc/srchxtra.hxx')
-rw-r--r-- | cui/source/inc/srchxtra.hxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/cui/source/inc/srchxtra.hxx b/cui/source/inc/srchxtra.hxx index 23ca743016ba..e6ca82ba9697 100644 --- a/cui/source/inc/srchxtra.hxx +++ b/cui/source/inc/srchxtra.hxx @@ -27,22 +27,17 @@ #include <svx/checklbx.hxx> #include <svx/srchdlg.hxx> -class SvxSearchFormatDialog : public SfxTabDialog +class SvxSearchFormatDialog : public SfxTabDialogController { public: - SvxSearchFormatDialog( vcl::Window* pParent, const SfxItemSet& rSet ); + SvxSearchFormatDialog(weld::Window* pParent, const SfxItemSet& rSet); virtual ~SvxSearchFormatDialog() override; - virtual void dispose() override; protected: - virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) override; + virtual void PageCreated(const OString& rId, SfxTabPage &rPage) override; private: std::unique_ptr<FontList> m_pFontList; - sal_uInt16 m_nNamePageId; - sal_uInt16 m_nParaStdPageId; - sal_uInt16 m_nParaAlignPageId; - sal_uInt16 m_nBackPageId; }; // class SvxSearchFormatDialog ------------------------------------------- |