summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx2
-rw-r--r--forms/source/component/ImageControl.cxx2
-rw-r--r--forms/source/inc/FormComponent.hxx2
-rw-r--r--include/comphelper/types.hxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/property/propertycontainerhelper.cxx b/comphelper/source/property/propertycontainerhelper.cxx
index 13f3307fc18b..23b0583764d3 100644
--- a/comphelper/source/property/propertycontainerhelper.cxx
+++ b/comphelper/source/property/propertycontainerhelper.cxx
@@ -489,7 +489,7 @@ void OPropertyContainerHelper::describeProperties(Sequence< Property >& _rProps)
// as our property vector is sorted by handles, not by name, we have to sort aOwnProps
::std::sort(aOwnProps.getArray(), aOwnProps.getArray() + aOwnProps.getLength(), PropertyCompareByName());
- // unfortunally the STL merge function does not allow the output range to overlap one of the input ranges,
+ // unfortunately the STL merge function does not allow the output range to overlap one of the input ranges,
// so we need an extra sequence
Sequence< Property > aOutput;
aOutput.realloc(_rProps.getLength() + aOwnProps.getLength());
diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx
index 1410ff4c0d9b..26979a5a78a1 100644
--- a/forms/source/component/ImageControl.cxx
+++ b/forms/source/component/ImageControl.cxx
@@ -627,7 +627,7 @@ void OImageControlModel::doSetControlValue( const Any& _rValue )
Reference< XImageProducer > xProducer = m_xImageProducer;
{
// release our mutex once (it's acquired in the calling method!), as starting the image production may
- // result in the locking of the solar mutex (unfortunally the default implementation of our aggregate,
+ // result in the locking of the solar mutex (unfortunately the default implementation of our aggregate,
// VCLXImageControl, does this locking)
MutexRelease aRelease(m_aMutex);
xProducer->startProduction();
diff --git a/forms/source/inc/FormComponent.hxx b/forms/source/inc/FormComponent.hxx
index 04e28e96ebcc..1c78873f115b 100644
--- a/forms/source/inc/FormComponent.hxx
+++ b/forms/source/inc/FormComponent.hxx
@@ -973,7 +973,7 @@ protected:
getCurrentFormComponentValue() const;
/** We can't write (new) common properties in this base class, as the file format doesn't allow this
- (unfortunally). So derived classes may use the following two methods. They secure the written
+ (unfortunately). So derived classes may use the following two methods. They secure the written
data with marks, so any new common properties in newer versions will be skipped by older ones.
*/
void writeCommonProperties(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream);
diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx
index 58223161897f..b91b24c3c3c1 100644
--- a/include/comphelper/types.hxx
+++ b/include/comphelper/types.hxx
@@ -70,7 +70,7 @@ namespace comphelper
/** just a small shortcut ...
check if a type you have at hand at runtime is equal to another type you have at compile time
if all our compiler would accept function calls with explicit template arguments (like
- isA<classFoo>(runtimeType)), we wouldn't need the second parameter. But unfortunally at
+ isA<classFoo>(runtimeType)), we wouldn't need the second parameter. But unfortunately at
least the current solaris compiler doesn't allow this ....
So this function is nearly senseless ....
*/