diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-09-01 09:22:03 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 09:57:50 +0200 |
commit | 9c06059ec546683bfa095cf4f59ac6ea94da34fb (patch) | |
tree | da8daf7a3d51c33469f9ef8112900a2dd512e037 /framework | |
parent | 4ed9e48052163a89ac6268eabebc307d1336d42b (diff) |
Fix typos
Change-Id: I425988a6d99f81574ddec832852873971a03e9e7
Reviewed-on: https://gerrit.libreoffice.org/78362
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/threadhelp/gate.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/inc/threadhelp/gate.hxx b/framework/inc/threadhelp/gate.hxx index 5928d3e16444..f0113f398878 100644 --- a/framework/inc/threadhelp/gate.hxx +++ b/framework/inc/threadhelp/gate.hxx @@ -27,7 +27,7 @@ namespace framework{ /*-************************************************************************************************************ - @short implement a gate to block multiple threads at same time or unblock all + @short implement a gate to block multiple threads at the same time or unblock all @descr A gate can be used as a negative-condition! You can open a "door" - wait() will not block ... or you can close it - wait() blocks till open() is called again. Then all currently waiting threads are running immediately - but new ones are blocked! |