summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManal Alhassoun <malhassoun@kacst.edu.sa>2013-11-07 15:12:10 +0300
committerCaolán McNamara <caolanm@redhat.com>2013-11-12 12:07:33 +0000
commiteb505c259d0d7bd05d1bb5be5a14ad8613c2a9c7 (patch)
treed1852eccb10ffb0a4e8a02e85540edadaa0f9955 /include
parent12fd49a2701f4d23f23f0770bd40c8cd20b523c7 (diff)
Convert New Style dialog to widget UI
Change-Id: Idaea69f674e1e84e3e1e649006c2d92176897fe0 Reviewed-on: https://gerrit.libreoffice.org/6607 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/newstyle.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/sfx2/newstyle.hxx b/include/sfx2/newstyle.hxx
index 958439636db8..368d154e9eee 100644
--- a/include/sfx2/newstyle.hxx
+++ b/include/sfx2/newstyle.hxx
@@ -33,10 +33,8 @@ class SfxStyleSheetBasePool;
class SFX2_DLLPUBLIC SfxNewStyleDlg : public ModalDialog
{
private:
- FixedLine aColFL;
- ComboBox aColBox;
- OKButton aOKBtn;
- CancelButton aCancelBtn;
+ ComboBox* m_pColBox;
+ OKButton* m_pOKBtn;
QueryBox aQueryOverwriteBox;
SfxStyleSheetBasePool& rPool;
@@ -48,7 +46,7 @@ public:
SfxNewStyleDlg( Window* pParent, SfxStyleSheetBasePool& );
~SfxNewStyleDlg();
- OUString GetName() const { return comphelper::string::stripStart(aColBox.GetText(), ' '); }
+ OUString GetName() const { return comphelper::string::stripStart(m_pColBox->GetText(), ' '); }
};
#endif