summaryrefslogtreecommitdiff
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-30 22:26:08 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-07-03 21:31:22 +0200
commit49f176d7cae45d69754cd179fcb435dc033b3b22 (patch)
treeedb30bcdb34576f6ec819d405e673d4fbc9365de /include/cppuhelper
parent0300e238c68f91d5921140628809024279437906 (diff)
Fix typo
Change-Id: I0f1ea1046b5d160fbf23cf630eb0ec8b8bfce57e Reviewed-on: https://gerrit.libreoffice.org/75054 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/propshlp.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/cppuhelper/propshlp.hxx b/include/cppuhelper/propshlp.hxx
index 57799b4ce45f..5a9295a974c6 100644
--- a/include/cppuhelper/propshlp.hxx
+++ b/include/cppuhelper/propshlp.hxx
@@ -65,7 +65,7 @@ public:
Return the property members Name and Attribute from the handle nHandle.
@param nHandle the handle of a property. If the values of the handles
are sorted in the same way as the names and the highest handle value
- is getCount() -1, than it must be an indexed access to the property array.
+ is getCount() -1, then it must be an indexed access to the property array.
@param pPropName is an out parameter filled with property name of the property with the
handle nHandle. May be NULL.
@param pAttributes is an out parameter filled with attributes of the property with the
@@ -143,7 +143,7 @@ public:
Return the property members Name and Attribute from the handle nHandle.
@param nHandle the handle of a property. If the values of the handles
are sorted in the same way as the names and the highest handle value
- is getCount() -1, than it is only an indexed access to the property array.
+ is getCount() -1, then it is only an indexed access to the property array.
Otherwise it is a linear search through the array.
@param pPropName is an out parameter filled with property name of the property with the
handle nHandle. May be NULL.
@@ -552,7 +552,7 @@ protected:
@param rConvertedValue the converted value. Only set if return is true.
@param rOldValue the old value. Only set if return is true.
- @param nHandle the handle of the proberty.
+ @param nHandle the handle of the property.
@param rValue the value to be converted
@return true if the value converted.
@throws css::lang::IllegalArgumentException
@@ -565,7 +565,7 @@ protected:
sal_Int32 nHandle,
const css::uno::Any& rValue ) = 0;
- /** The same as setFastProperyValue; nHandle is always valid.
+ /** The same as setFastPropertyValue; nHandle is always valid.
The changes must not be broadcasted in this method.
The method is implemented in a derived class.
@@ -588,7 +588,7 @@ protected:
sal_Int32 nHandle,
const css::uno::Any& rValue ) = 0;
/**
- The same as getFastProperyValue, but return the value through rValue and nHandle
+ The same as getFastPropertyValue, but return the value through rValue and nHandle
is always valid.
The method is not implemented in this class.
*/
@@ -622,7 +622,7 @@ protected:
/** The common data of a broadcaster. Use the mutex, disposing state and the listener container. */
OBroadcastHelper &rBHelper;
/**
- Container for the XProperyChangedListener. The listeners are inserted by handle.
+ Container for the XPropertyChangedListener. The listeners are inserted by handle.
*/
OMultiTypeInterfaceContainerHelperInt32 aBoundLC;
/**