summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-14 21:23:27 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-05 07:07:59 +0200
commit5f26419865d5f3c772264d3efe655116745ebbbd (patch)
treeaeac49dd51bb9d2c1c1da1fdb3facee5f8f6ce11 /forms
parentb89a6da298502e5b0d48ba36d22c4d8448b6a2cf (diff)
Fix typo
Change-Id: Ie8b8aeb1ebcb78cca73c6c2bc0512b2f30d245ae Reviewed-on: https://gerrit.libreoffice.org/73474 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormattedField.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index 171387dbc026..0e5d7f157d56 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -514,7 +514,7 @@ void OFormattedModel::loaded(const EventObject& rEvent)
{
// HACK: our onConnectedDbColumn accesses our NumberFormatter which locks the solar mutex (as it doesn't have
// an own one). To prevent deadlocks with other threads which may request a property from us in an
- // UI-triggered action (e.g. an tooltip) we lock the solar mutex _here_ before our base class locks
+ // UI-triggered action (e.g. a tooltip) we lock the solar mutex _here_ before our base class locks
// its own mutex (which is used for property requests)
// alternative a): we use two mutexes, one which is passed to the OPropertysetHelper and used for
// property requests and one for our own code. This would need a lot of code rewriting