summaryrefslogtreecommitdiffstats
path: root/include/sfx2/newstyle.hxx
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/sfx2/newstyle.hxx
parentCppunitTest_sw_htmlexport: make this really test the exported model (diff)
downloadcore-eb505c259d0d7bd05d1bb5be5a14ad8613c2a9c7.tar.gz
core-eb505c259d0d7bd05d1bb5be5a14ad8613c2a9c7.zip
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/sfx2/newstyle.hxx')
-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