summaryrefslogtreecommitdiff
path: root/sc/source/ui/condformat/condformatdlgentry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/condformat/condformatdlgentry.cxx')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index 2a0e5f5ad34b..a55b5336622d 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -142,8 +142,8 @@ ScConditionFrmtEntry::ScConditionFrmtEntry(ScCondFormatList* pParent, ScDocument
const ScAddress& rPos, const ScCondFormatEntry* pFormatEntry)
: ScCondFrmtEntry(pParent, pDoc, rPos)
, mxLbCondType(mxBuilder->weld_combo_box("typeis"))
- , mxEdVal1(new formula::WeldRefEdit(mxBuilder->weld_entry("val1")))
- , mxEdVal2(new formula::WeldRefEdit(mxBuilder->weld_entry("val2")))
+ , mxEdVal1(new formula::RefEdit(mxBuilder->weld_entry("val1")))
+ , mxEdVal2(new formula::RefEdit(mxBuilder->weld_entry("val2")))
, mxFtVal(mxBuilder->weld_label("valueft"))
, mxFtStyle(mxBuilder->weld_label("styleft"))
, mxLbStyle(mxBuilder->weld_combo_box("style"))
@@ -233,7 +233,7 @@ ScFormatEntry* ScConditionFrmtEntry::createConditionEntry() const
return pEntry;
}
-IMPL_LINK(ScConditionFrmtEntry, OnEdChanged, formula::WeldRefEdit&, rRefEdit, void)
+IMPL_LINK(ScConditionFrmtEntry, OnEdChanged, formula::RefEdit&, rRefEdit, void)
{
weld::Entry& rEdit = *rRefEdit.GetWidget();
OUString aFormula = rEdit.get_text();
@@ -488,7 +488,7 @@ ScFormulaFrmtEntry::ScFormulaFrmtEntry(ScCondFormatList* pParent, ScDocument* pD
, mxLbStyle(mxBuilder->weld_combo_box("style"))
, mxWdPreviewWin(mxBuilder->weld_widget("previewwin"))
, mxWdPreview(new weld::CustomWeld(*mxBuilder, "preview", maWdPreview))
- , mxEdFormula(new formula::WeldRefEdit(mxBuilder->weld_entry("formula")))
+ , mxEdFormula(new formula::RefEdit(mxBuilder->weld_entry("formula")))
{
mxWdPreview->set_size_request(-1, mxLbStyle->get_preferred_size().Height());