summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-07-20 10:16:14 +0200
committerJens Carl <j.carl43@gmx.de>2018-07-20 18:55:16 +0200
commit133da6ed83b278b9e6059c5c1a3d49f9f402792e (patch)
tree0f4749a6fdb4f5a5a706af34fb5dd3a67e55625f /forms
parent4a627a5724c9a9a4e469921d032376703260fbff (diff)
Fix typos
Change-Id: Ia3e6f17217b837517faa588ea7f2e72dc5aff6aa Reviewed-on: https://gerrit.libreoffice.org/57767 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/Edit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/Edit.cxx b/forms/source/component/Edit.cxx
index 064bfe7205a0..0627d60059e2 100644
--- a/forms/source/component/Edit.cxx
+++ b/forms/source/component/Edit.cxx
@@ -517,7 +517,7 @@ void OEditModel::write(const Reference<XObjectOutputStream>& _rxOutStream)
m_xAggregateSet->setPropertyValue(PROPERTY_MAXTEXTLEN, makeAny(nOldTextLen));
// and reset the text
// First we set it to an empty string : Without this the second setPropertyValue would not do anything as it thinks
- // we aren't changing the prop (it didn't notify the - implicite - change of the text prop while setting the max text len)
+ // we aren't changing the prop (it didn't notify the - implicit - change of the text prop while setting the max text len)
// This seems to be a bug with in toolkit's EditControl-implementation.
m_xAggregateSet->setPropertyValue(PROPERTY_TEXT, makeAny(OUString()));
m_xAggregateSet->setPropertyValue(PROPERTY_TEXT, aCurrentText);