summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-29 09:30:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-29 12:54:01 +0200
commit60f97b07695796368a36f846d5b596481675c22e (patch)
tree74fed32e300bbdff5c669d1ac66620445e37b451 /sc/source/ui/inc
parent63d17d01da0f9e3a7554e4327244ee4457b7188d (diff)
weld ScDocStatPage
Change-Id: I24d264f6318adfd9f67303d95b3b8fe0987f928a Reviewed-on: https://gerrit.libreoffice.org/73144 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/tpstat.hxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/sc/source/ui/inc/tpstat.hxx b/sc/source/ui/inc/tpstat.hxx
index 299b703fcf11..a24bc18fa88b 100644
--- a/sc/source/ui/inc/tpstat.hxx
+++ b/sc/source/ui/inc/tpstat.hxx
@@ -21,7 +21,6 @@
#define INCLUDED_SC_SOURCE_UI_INC_TPSTAT_HXX
#include <sfx2/tabdlg.hxx>
-#include <vcl/fixed.hxx>
class ScDocStatPage: public SfxTabPage
{
@@ -29,19 +28,19 @@ class ScDocStatPage: public SfxTabPage
public:
static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rSet );
virtual ~ScDocStatPage() override;
- virtual void dispose() override;
private:
- ScDocStatPage( vcl::Window *pParent, const SfxItemSet& rSet );
+ ScDocStatPage(TabPageParent pParent, const SfxItemSet& rSet);
protected:
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset ( const SfxItemSet* rSet ) override;
private:
- VclPtr<FixedText> m_pFtTables;
- VclPtr<FixedText> m_pFtCells;
- VclPtr<FixedText> m_pFtPages;
- VclPtr<FixedText> m_pFtFormula;
+ std::unique_ptr<weld::Label> m_xFtTables;
+ std::unique_ptr<weld::Label> m_xFtCells;
+ std::unique_ptr<weld::Label> m_xFtPages;
+ std::unique_ptr<weld::Label> m_xFtFormula;
+ std::unique_ptr<weld::Frame> m_xFrame;
};
#endif