summaryrefslogtreecommitdiff
path: root/framework/source/fwi/threadhelp/lockhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwi/threadhelp/lockhelper.cxx')
-rw-r--r--framework/source/fwi/threadhelp/lockhelper.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/framework/source/fwi/threadhelp/lockhelper.cxx b/framework/source/fwi/threadhelp/lockhelper.cxx
index 0a05c66b0011..8a7edefc8233 100644
--- a/framework/source/fwi/threadhelp/lockhelper.cxx
+++ b/framework/source/fwi/threadhelp/lockhelper.cxx
@@ -93,7 +93,7 @@ LockHelper::~LockHelper()
we must simulate it as a write access!
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method acquireWriteAccess()
@@ -115,7 +115,7 @@ void LockHelper::acquire()
we must simulate it as a write access!
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method releaseWriteAccess()
@@ -136,7 +136,7 @@ void LockHelper::release()
Writing isn't allowed then - but nobody could check it for you!
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method releaseReadAccess()
@@ -156,7 +156,7 @@ void LockHelper::acquireReadAccess()
@descr A guard should call this method to release read access on your member.
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method acquireReadAccess()
@@ -178,7 +178,7 @@ void LockHelper::releaseReadAccess()
After successfully calling of this method you are the only writer.
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method releaseWriteAccess()
@@ -198,7 +198,7 @@ void LockHelper::acquireWriteAccess()
@descr A guard should call this method to release write access on your member.
@attention If a shareable osl mutex exist, he must be used as twice!
- It's neccessary for some cppu-helper classes ...
+ It's necessary for some cppu-helper classes ...
@seealso method acquireWriteAccess()
@@ -223,10 +223,10 @@ void LockHelper::releaseWriteAccess()
@attention a) Don't call this method if you are not a writer!
Results are not defined then ...
- An upgrade can't be implemented realy ... because acquiring new access
+ An upgrade can't be implemented really ... because acquiring new access
will be the same - there no differences!
b) Without function ...
- because, a mutex don't support it realy.
+ because, a mutex don't support it really.
@seealso -