summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-03 11:26:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-07-03 18:10:13 +0200
commitb6b74150955d99af77c07c6c158a815bdff53cca (patch)
treed63afc8a3a6f4a9199a9b4cc3cfbef92e7122bcf /svtools
parent8ac055fa8aa7ea6c15fc5e8c36df840978878a6f (diff)
rename FormattedEntry to EntryFormatter
Change-Id: I96079720f60b789f0b8d5483973150cb050e87e9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97859 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/ebbcontrols.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx
index 70f7a64b5b6d..46375ff36390 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -384,14 +384,14 @@ namespace svt
FormattedControl::FormattedControl(vcl::Window* pParent)
: EditControlBase(pParent)
, m_xEntry(m_xBuilder->weld_entry("entry"))
- , m_xFormattedEntry(new weld::FormattedEntry(*m_xEntry))
+ , m_xEntryFormatter(new weld::EntryFormatter(*m_xEntry))
{
init(m_xEntry.get());
}
void FormattedControl::dispose()
{
- m_xFormattedEntry.reset();
+ m_xEntryFormatter.reset();
m_xEntry.reset();
EditControlBase::dispose();
}