diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-02-13 18:25:22 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-02-17 13:57:44 +0400 |
commit | e2f97dcc1006aceb80c4805c0e1cb5b2f40ab7b0 (patch) | |
tree | e5dec44faf212f3072fc4962a96b51ee40b67ad0 /comphelper | |
parent | 2a7db22c3825acdb0c36a9cefd5736d73e4fefbf (diff) |
spelling: otherwhise -> otherwise
Change-Id: I2d89edbb2574b4e677c9a0682bc829d9476b54db
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/mediadescriptor.hxx | 8 | ||||
-rw-r--r-- | comphelper/inc/comphelper/sequenceashashmap.hxx | 4 | ||||
-rw-r--r-- | comphelper/source/misc/locale.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/misc/numberedcollection.cxx | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/comphelper/inc/comphelper/mediadescriptor.hxx b/comphelper/inc/comphelper/mediadescriptor.hxx index 8c55f85af8ea..ac045dc2c4a0 100644 --- a/comphelper/inc/comphelper/mediadescriptor.hxx +++ b/comphelper/inc/comphelper/mediadescriptor.hxx @@ -123,7 +123,7 @@ class COMPHELPER_DLLPUBLIC MediaDescriptor : public SequenceAsHashMap In case of local file the system file locking is used. @return TRUE, if the stream was already part of the descriptor or could - be created as new item. FALSE otherwhise. + be created as new item. FALSE otherwise. */ sal_Bool addInputStream(); @@ -142,7 +142,7 @@ class COMPHELPER_DLLPUBLIC MediaDescriptor : public SequenceAsHashMap configuration settings. @return TRUE, if the stream was already part of the descriptor or could - be created as new item. FALSE otherwhise. + be created as new item. FALSE otherwise. */ sal_Bool addInputStreamOwnLock(); @@ -162,7 +162,7 @@ class COMPHELPER_DLLPUBLIC MediaDescriptor : public SequenceAsHashMap show a readonly UI on top of this read/write stream. @return TRUE, if the stream must be interpreted as readonly ... - FALSE otherwhise. + FALSE otherwise. */ sal_Bool isStreamReadOnly() const; @@ -298,7 +298,7 @@ class COMPHELPER_DLLPUBLIC MediaDescriptor : public SequenceAsHashMap specifies whether the file should be locked @return TRUE, if the stream was already part of the descriptor or could - be created as new item. FALSE otherwhise. + be created as new item. FALSE otherwise. */ COMPHELPER_DLLPRIVATE sal_Bool impl_addInputStream( sal_Bool bLockFile ); }; diff --git a/comphelper/inc/comphelper/sequenceashashmap.hxx b/comphelper/inc/comphelper/sequenceashashmap.hxx index 356512708357..284714ffb20b 100644 --- a/comphelper/inc/comphelper/sequenceashashmap.hxx +++ b/comphelper/inc/comphelper/sequenceashashmap.hxx @@ -205,7 +205,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase //--------------------------------------- /** @short check if the specified item exists and return its (unpacked!) value or it returns the - specified default value otherwhise. + specified default value otherwise. @descr If a value should be extracted only in case the requsted property exists realy (without creating @@ -221,7 +221,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase be found. @return The (unpacked!) value of the specified property or - the given default value otherwhise. + the given default value otherwise. @attention "unpacked" means the Any content of every iterator->second! */ diff --git a/comphelper/source/misc/locale.cxx b/comphelper/source/misc/locale.cxx index 48530339c5b6..f11a13d94461 100644 --- a/comphelper/source/misc/locale.cxx +++ b/comphelper/source/misc/locale.cxx @@ -68,7 +68,7 @@ Locale::Locale(const ::rtl::OUString& sLanguage, //----------------------------------------------- Locale::Locale() { - // Initialize instance ... otherwhise user will + // Initialize instance ... otherwise user will // may be get exceptions if he e.g. copy this instance ... (*this) = X_NOTRANSLATE(); } diff --git a/comphelper/source/misc/numberedcollection.cxx b/comphelper/source/misc/numberedcollection.cxx index 88839ad8cc65..aa9d43578283 100644 --- a/comphelper/source/misc/numberedcollection.cxx +++ b/comphelper/source/misc/numberedcollection.cxx @@ -195,7 +195,7 @@ void SAL_CALL NumberedCollection::releaseNumberForComponent(const css::uno::Refe ::sal_Int32 c = (::sal_Int32)m_lComponents.size (); ::sal_Int32 i = 1; - // c cant be less then 0 ... otherwhise hash.size() has an error :-) + // c cant be less then 0 ... otherwise hash.size() has an error :-) // But we need at least n+1 numbers here. c += 1; |