summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-04-01 21:14:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2015-04-01 21:14:43 +0200
commit65c3f29a96de46b7a36bda16841d4e7d26f4845b (patch)
tree4f345f7475b71571f3e0603725c9aaa6cb851ed0 /extensions
parent3a54090f1ef4469cf824fcdb22c100c49d2ab7db (diff)
Typo: wheter->whether
Change-Id: Iab5e7de499452924b4ac0d34cc604ee38395c813
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/oleobjw.hxx2
-rw-r--r--extensions/source/ole/unoobjw.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx
index 886c9aa2284b..96011012477f 100644
--- a/extensions/source/ole/oleobjw.hxx
+++ b/extensions/source/ole/oleobjw.hxx
@@ -217,7 +217,7 @@ protected:
void getFuncDescForInvoke(const OUString & sFuncName,
const Sequence<Any> & seqArgs, FUNCDESC** pFuncDesc);
- // Finds out wheter the wrapped IDispatch is an JScript Object. This is is
+ // Finds out whether the wrapped IDispatch is an JScript Object. This is is
// done by
// asking for the property "_environment". If it has the value "JScript"
// (case insensitive) then the IDispatch is considered a JScript object.
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index d0902acce631..a860e8424ef1 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -305,7 +305,7 @@ STDMETHODIMP InterfaceOleWrapper_Impl::GetIDsOfNames(REFIID /*riid*/,
// With the help of type information the kind of parameter can be exactly determined
// and an appropriate conversion can be chosen. A problem arises if a method expects
// an Any. Then the type info does not tell what the type of the value, that is kept
-// by the any, should be. In this situation the decision wheter the param is a
+// by the any, should be. In this situation the decision whether the param is a
// sequence or an object is made upon the fact if the object has a property "0"
// ( see function "isJScriptArray"). Since this is unsafe it is recommended to use
// the JScript value objects within a JScript script on such an occasion.