summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorPedro Giffuni <pfg@apache.org>2014-04-29 19:25:03 +0000
committerPedro Giffuni <pfg@apache.org>2014-04-29 19:25:03 +0000
commit28206a7cb43aff5adb10f8235ad1680c3941ee3e (patch)
tree89886aa22af7483120081efc38a138d737651703 /salhelper
parentc3f20ae9a447f50517fe545a53de91d412c3337c (diff)
Many spelling fixes: directories r* - z*.
Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before.
Notes
Notes: merged as: 820a29950b3085a713026995fdc43e32b6ded5f7
Diffstat (limited to 'salhelper')
-rw-r--r--salhelper/inc/salhelper/dynload.hxx2
-rw-r--r--salhelper/inc/salhelper/singletonref.hxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/salhelper/inc/salhelper/dynload.hxx b/salhelper/inc/salhelper/dynload.hxx
index 10039c0ccca0..862712fa1e31 100644
--- a/salhelper/inc/salhelper/dynload.hxx
+++ b/salhelper/inc/salhelper/dynload.hxx
@@ -36,7 +36,7 @@ namespace salhelper
class ORealDynamicLoader
{
public:
- /** initializes the loader, loads the library and call the initialization fucntion.
+ /** initializes the loader, loads the library and call the initialization function.
@param ppSetToZeroInDestructor points to the loader instance which must be set to NULL
if the loader will be destroyed.
diff --git a/salhelper/inc/salhelper/singletonref.hxx b/salhelper/inc/salhelper/singletonref.hxx
index 23fe45e5b587..837fb98b789e 100644
--- a/salhelper/inc/salhelper/singletonref.hxx
+++ b/salhelper/inc/salhelper/singletonref.hxx
@@ -55,10 +55,10 @@ namespace salhelper{
@attention To prevent the code against race conditions, its not
allowed to start operations inside the ctor
- of the internal wrapped object - especialy operations
+ of the internal wrapped object - especially operations
which needs a reference to the same singleton too.
- The only chance to supress such strange constellations
+ The only chance to suppress such strange constellations
is a lazy-init mechanism.
<ul>
@@ -70,7 +70,7 @@ namespace salhelper{
Note further that this singleton pattern can work only, if
all user of such singleton are located inside the same library!
- Because static values cant be exported - e.g. from windows libraries.
+ Because static values can't be exported - e.g. from windows libraries.
*/
template< class SingletonClass >
class SingletonRef