diff options
author | Olivier Hallot <olivier.hallot@edx.srv.br> | 2013-08-18 22:41:40 -0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-19 10:20:52 +0000 |
commit | be49b8052489b788046d7250ed851408be759900 (patch) | |
tree | 1887dec87cffe4d948eb24d51d12500acc864593 /cui/source/inc | |
parent | 81f14df66d64f869ac481219ad1e441f089579de (diff) |
Convert slant & Corner radius tabpage to Widget UI
Conflicts:
cui/source/inc/helpid.hrc
Change-Id: Id0a51421e7d6cb7e0d0265f88de31ff3d9c574ec
Reviewed-on: https://gerrit.libreoffice.org/5505
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/helpid.hrc | 1 | ||||
-rw-r--r-- | cui/source/inc/transfrm.hxx | 10 |
2 files changed, 4 insertions, 7 deletions
diff --git a/cui/source/inc/helpid.hrc b/cui/source/inc/helpid.hrc index be0f17edcc40..3d123ecac4ba 100644 --- a/cui/source/inc/helpid.hrc +++ b/cui/source/inc/helpid.hrc @@ -212,7 +212,6 @@ #define HID_TPROTATION_CTRL1 "CUI_HID_TPROTATION_CTRL1" #define HID_TPROTATION_CTRL2 "CUI_HID_TPROTATION_CTRL2" #define HID_TRANS_ANGLE "CUI_HID_TRANS_ANGLE" -#define HID_TRANS_SLANT "CUI_HID_TRANS_SLANT" #define HID_TPHATCH_CTRL "CUI_HID_TPHATCH_CTRL" #define HID_SEARCHATTR_CTL_ATTR "CUI_HID_SEARCHATTR_CTL_ATTR" #define HID_SEARCHATTR "CUI_HID_SEARCHATTR" diff --git a/cui/source/inc/transfrm.hxx b/cui/source/inc/transfrm.hxx index bc474fca950c..a3754180456a 100644 --- a/cui/source/inc/transfrm.hxx +++ b/cui/source/inc/transfrm.hxx @@ -230,12 +230,10 @@ class SvxSlantTabPage : public SvxTabPage using TabPage::DeactivatePage; private: - FixedLine aFlRadius; - FixedText aFtRadius; - MetricField aMtrRadius; - FixedLine aFlAngle; - FixedText aFtAngle; - MetricField aMtrAngle; + VclFrame* m_pFlRadius; + MetricField* m_pMtrRadius; + VclFrame* m_pFlAngle; + MetricField* m_pMtrAngle; const SfxItemSet& rOutAttrs; |