summaryrefslogtreecommitdiffstats
path: root/include/sfx2/newstyle.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-09-10 17:19:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-09-14 11:43:51 +0100
commit9237a905fa5f2b67db73c15847eff203a258c2b4 (patch)
treebf213e7f3fd7322ee032af9fa648d04c99faaba1 /include/sfx2/newstyle.hxx
parentReduce variable scope (diff)
downloadcore-9237a905fa5f2b67db73c15847eff203a258c2b4.tar.gz
core-9237a905fa5f2b67db73c15847eff203a258c2b4.zip
weld SvxCharNamePage
Change-Id: Ia54a5ac4fe4a11b7c03508c336193bb52c616e7f
Diffstat (limited to 'include/sfx2/newstyle.hxx')
-rw-r--r--include/sfx2/newstyle.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/newstyle.hxx b/include/sfx2/newstyle.hxx
index 6fecb3378f4d..5cd9e24b41e7 100644
--- a/include/sfx2/newstyle.hxx
+++ b/include/sfx2/newstyle.hxx
@@ -38,13 +38,13 @@ private:
DECL_DLLPRIVATE_LINK(OKHdl, weld::TreeView&, void);
DECL_DLLPRIVATE_LINK(OKClickHdl, weld::Button&, void);
- DECL_DLLPRIVATE_LINK(ModifyHdl, weld::Entry&, void);
+ DECL_DLLPRIVATE_LINK(ModifyHdl, weld::ComboBoxText&, void);
public:
SfxNewStyleDlg(weld::Window* pParent, SfxStyleSheetBasePool&);
virtual ~SfxNewStyleDlg() override;
- OUString GetName() const { return comphelper::string::stripStart(m_xColBox->get_text(), ' '); }
+ OUString GetName() const { return comphelper::string::stripStart(m_xColBox->get_active_text(), ' '); }
};
#endif