summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-03-29 18:19:31 +0100
committerThomas Arnhold <thomas@arnhold.org>2014-03-29 19:16:20 +0100
commitcc3a302fcb564b996740524a6c5e6934d9ce8824 (patch)
tree95487c08df9f7add0fbfde22a0d308428ded4ee4 /comphelper
parente5355180f4f42d3ad0d630c2a9bf7a0a63a1aa06 (diff)
typo: unfortunally -> unfortunately
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx2
1 files changed, 1 insertions, 1 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());