diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-26 20:12:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-27 12:51:46 +0200 |
commit | ac1ae3e055f9104b40a12a8f5b6418817230af0d (patch) | |
tree | 02997fb9ef280e9dd1e11d9d57039f0613877a5f /cui/source/options/optaccessibility.hxx | |
parent | e171aec015212aa295e5e1831474b8af636e477b (diff) |
weld SvxAccessibilityOptionsTabPage
Change-Id: I77354538eb8ff31dcc3bfc3d5a7742e92b8cd7b5
Reviewed-on: https://gerrit.libreoffice.org/76455
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/options/optaccessibility.hxx')
-rw-r--r-- | cui/source/options/optaccessibility.hxx | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/cui/source/options/optaccessibility.hxx b/cui/source/options/optaccessibility.hxx index 359a2a286ab4..5a1ed1bbb3c2 100644 --- a/cui/source/options/optaccessibility.hxx +++ b/cui/source/options/optaccessibility.hxx @@ -20,22 +20,20 @@ #define INCLUDED_CUI_SOURCE_OPTIONS_OPTACCESSIBILITY_HXX #include <sfx2/tabdlg.hxx> -#include <vcl/button.hxx> class SvxAccessibilityOptionsTabPage : public SfxTabPage { - VclPtr<CheckBox> m_pAccessibilityTool; - VclPtr<CheckBox> m_pTextSelectionInReadonly; - VclPtr<CheckBox> m_pAnimatedGraphics; - VclPtr<CheckBox> m_pAnimatedTexts; - VclPtr<CheckBox> m_pAutoDetectHC; - VclPtr<CheckBox> m_pAutomaticFontColor; - VclPtr<CheckBox> m_pPagePreviews; + std::unique_ptr<weld::CheckButton> m_xAccessibilityTool; + std::unique_ptr<weld::CheckButton> m_xTextSelectionInReadonly; + std::unique_ptr<weld::CheckButton> m_xAnimatedGraphics; + std::unique_ptr<weld::CheckButton> m_xAnimatedTexts; + std::unique_ptr<weld::CheckButton> m_xAutoDetectHC; + std::unique_ptr<weld::CheckButton> m_xAutomaticFontColor; + std::unique_ptr<weld::CheckButton> m_xPagePreviews; public: - SvxAccessibilityOptionsTabPage( vcl::Window* pParent, const SfxItemSet& rSet ); + SvxAccessibilityOptionsTabPage(TabPageParent pParent, const SfxItemSet& rSet); virtual ~SvxAccessibilityOptionsTabPage() override; - virtual void dispose() override; static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rAttrSet ); virtual bool FillItemSet( SfxItemSet* rSet ) override; |