diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-05-22 11:27:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-22 11:45:29 +0100 |
commit | 7c04626ec7b54d8db2ff9bac19df75dd668ad8f7 (patch) | |
tree | 1b63881e46ab5124602544cb6ea04c7ab2cb95bf /starmath/inc/dialog.hxx | |
parent | 6a043e9c0acff20e1618ca8ec15c21d5d0fd0d37 (diff) |
adapt code to alignment dialog .ui conversion
Change-Id: I8a64ddc076e177deaa61a450716d7d3dd8043303
Diffstat (limited to 'starmath/inc/dialog.hxx')
-rw-r--r-- | starmath/inc/dialog.hxx | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/starmath/inc/dialog.hxx b/starmath/inc/dialog.hxx index ac0508f4ae29..34511b998923 100644 --- a/starmath/inc/dialog.hxx +++ b/starmath/inc/dialog.hxx @@ -271,20 +271,15 @@ public: class SmAlignDialog : public ModalDialog { - RadioButton aLeft; - RadioButton aCenter; - RadioButton aRight; - FixedLine aFixedLine1; - OKButton aOKButton1; - HelpButton aHelpButton1; - CancelButton aCancelButton1; - PushButton aDefaultButton; + RadioButton* m_pLeft; + RadioButton* m_pCenter; + RadioButton* m_pRight; + PushButton* m_pDefaultButton; DECL_LINK(DefaultButtonClickHdl, Button *); - DECL_LINK(HelpButtonClickHdl, Button *); public: - SmAlignDialog(Window *pParent, bool bFreeRes = true); + SmAlignDialog(Window *pParent); void ReadFrom(const SmFormat &rFormat); void WriteTo (SmFormat &rFormat) const; |