summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-13 14:30:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-07-15 14:58:53 +0200
commitc7cd9bec28fbe06b46c4bc24db39d843857ce731 (patch)
tree77fd34d8992d21ad81cca11453675aec1736d6c3 /svx/source/fmcomp
parent590ec971a833e353e745049503958c99d58bbb15 (diff)
rename entry formatter for more consistent naming
Change-Id: I0a138015b1db6d00413e4b381f0da0757d56e25c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98667 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r--svx/source/fmcomp/gridcell.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx
index ca50c2a427fc..bddf63079c0c 100644
--- a/svx/source/fmcomp/gridcell.cxx
+++ b/svx/source/fmcomp/gridcell.cxx
@@ -2046,7 +2046,7 @@ void DbCurrencyField::implAdjustGenericFieldSetting( const Reference< XPropertyS
rEditFormatter.SetMaxValue(nMax);
rEditFormatter.SetSpinSize(nStep);
rEditFormatter.SetStrictFormat(bStrict);
- weld::LongCurrencyEntry& rCurrencyEditFormatter = static_cast<weld::LongCurrencyEntry&>(rEditFormatter);
+ weld::LongCurrencyFormatter& rCurrencyEditFormatter = static_cast<weld::LongCurrencyFormatter&>(rEditFormatter);
rCurrencyEditFormatter.SetUseThousandSep(bThousand);
rCurrencyEditFormatter.SetCurrencySymbol(aStr);
@@ -2055,7 +2055,7 @@ void DbCurrencyField::implAdjustGenericFieldSetting( const Reference< XPropertyS
rPaintFormatter.SetMinValue(nMin);
rPaintFormatter.SetMaxValue(nMax);
rPaintFormatter.SetStrictFormat(bStrict);
- weld::LongCurrencyEntry& rPaintCurrencyFormatter = static_cast<weld::LongCurrencyEntry&>(rPaintFormatter);
+ weld::LongCurrencyFormatter& rPaintCurrencyFormatter = static_cast<weld::LongCurrencyFormatter&>(rPaintFormatter);
rPaintCurrencyFormatter.SetUseThousandSep(bThousand);
rPaintCurrencyFormatter.SetCurrencySymbol(aStr);
}