summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-12-02 14:50:45 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-12-02 20:02:45 +0100
commitf32a031e9825350adea28e57eac924161d8de8cb (patch)
tree77fd0aa254c2ca308767ff2f7b8ee15746980d4c
parente58eda7df5b384c0f054fcbd4a8dc4a47bed2080 (diff)
Fix typo
Change-Id: I2e6a60da6b4ad1eb5789cb29658dfa3e54dda9dd Reviewed-on: https://gerrit.libreoffice.org/84228 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--svx/source/form/fmshimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx
index 833fc55ff230..dc436a2aec7c 100644
--- a/svx/source/form/fmshimp.cxx
+++ b/svx/source/form/fmshimp.cxx
@@ -2303,7 +2303,7 @@ IMPL_LINK(FmXFormShell, OnSearchContextRequest_Lock, FmSearchContext&, rfmscCont
// small problem: To mark found fields, I need SdrObjects. To determine which controls
// to include in the search, I need Controls (that is, XControl interfaces). So I have
// to iterate over one of them and get the other in some way. Unfortunately, there is
- // no direct connexion between the two worlds (except from a GetUnoControl to a
+ // no direct connection between the two worlds (except from a GetUnoControl to a
// SdrUnoObject, but this requires an OutputDevice I can not do anything with.
// However I can get to the Model from the Control and also from the SdrObject, and in
// this way the assignment SdrObject<->Control is possible with a double loop.