diff options
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/inc/salhelper/dynload.hxx | 2 | ||||
-rw-r--r-- | salhelper/inc/salhelper/singletonref.hxx | 6 |
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 |