diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-20 13:05:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-23 12:33:44 +0200 |
commit | c0af8057188c0e95831f9e6d1ef96a424da6f9b2 (patch) | |
tree | 6509c67d0cfcc42e3b107004167f2efcccda43cd /sc/source/ui/inc/tpprint.hxx | |
parent | 27e26fc4286f66ab1bf4c807d86b8f3254c5c68b (diff) |
weld SfxPrintOptionsDialog
and SwMMResultPrintDialog
Change-Id: Icded6a26a3a151293bea0c9173334cf634283e89
Reviewed-on: https://gerrit.libreoffice.org/53299
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/ui/inc/tpprint.hxx')
-rw-r--r-- | sc/source/ui/inc/tpprint.hxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sc/source/ui/inc/tpprint.hxx b/sc/source/ui/inc/tpprint.hxx index fb201a5b852c..9ddae6ec4dae 100644 --- a/sc/source/ui/inc/tpprint.hxx +++ b/sc/source/ui/inc/tpprint.hxx @@ -21,19 +21,17 @@ #define INCLUDED_SC_SOURCE_UI_INC_TPPRINT_HXX #include <sfx2/tabdlg.hxx> -#include <vcl/fixed.hxx> class ScTpPrintOptions : public SfxTabPage { friend class VclPtr<ScTpPrintOptions>; - VclPtr<CheckBox> m_pSkipEmptyPagesCB; - VclPtr<CheckBox> m_pSelectedSheetsCB; - VclPtr<CheckBox> m_pForceBreaksCB; + std::unique_ptr<weld::CheckButton> m_xSkipEmptyPagesCB; + std::unique_ptr<weld::CheckButton> m_xSelectedSheetsCB; + std::unique_ptr<weld::CheckButton> m_xForceBreaksCB; - ScTpPrintOptions( vcl::Window* pParent, const SfxItemSet& rCoreSet ); + ScTpPrintOptions(TabPageParent pPage, const SfxItemSet& rCoreSet); public: virtual ~ScTpPrintOptions() override; - virtual void dispose() override; static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rCoreSet ); virtual bool FillItemSet( SfxItemSet* rCoreSet ) override; virtual void Reset( const SfxItemSet* rCoreSet ) override; |