summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx2
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx2
-rw-r--r--comphelper/source/streaming/seqstream.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx
index da86b96bf5d4..4d4edb1393dc 100644
--- a/comphelper/source/misc/accessiblewrapper.cxx
+++ b/comphelper/source/misc/accessiblewrapper.cxx
@@ -409,7 +409,7 @@ namespace comphelper
{
return m_xInnerContext->getAccessibleRelationSet();
// TODO: if this relation set would contain relations to siblings, we would normally need
- // to wrap them, too ....
+ // to wrap them, too...
}
diff --git a/comphelper/source/property/propertycontainerhelper.cxx b/comphelper/source/property/propertycontainerhelper.cxx
index e25743342136..252b3aa8179e 100644
--- a/comphelper/source/property/propertycontainerhelper.cxx
+++ b/comphelper/source/property/propertycontainerhelper.cxx
@@ -386,7 +386,7 @@ void OPropertyContainerHelper::setFastPropertyValue(sal_Int32 _nHandle, const An
reinterpret_cast< uno_ReleaseFunc >( cpp_release ) );
OSL_ENSURE( bSuccess,
- "OPropertyContainerHelper::setFastPropertyValue: ooops .... the value could not be assigned!");
+ "OPropertyContainerHelper::setFastPropertyValue: ooops... the value could not be assigned!");
break;
}
diff --git a/comphelper/source/streaming/seqstream.cxx b/comphelper/source/streaming/seqstream.cxx
index e7bcad1103c1..12a9bf1b5217 100644
--- a/comphelper/source/streaming/seqstream.cxx
+++ b/comphelper/source/streaming/seqstream.cxx
@@ -165,7 +165,7 @@ void SAL_CALL OSequenceOutputStream::writeBytes( const Sequence< sal_Int8 >& _rD
nNewLength = nCurrentLength + m_nMinimumResize;
if (nNewLength < m_nSize + _rData.getLength())
- { // it's not enough .... the data would not fit
+ { // it's not enough... the data would not fit
// let's take the double amount of the length of the data to be written, as the next write
// request could be as large as this one
@@ -173,7 +173,7 @@ void SAL_CALL OSequenceOutputStream::writeBytes( const Sequence< sal_Int8 >& _rD
nNewLength = nCurrentLength + nNewGrowth;
}
- // round it off to the next multiple of 4 ...
+ // round it off to the next multiple of 4...
nNewLength = (nNewLength + 3) / 4 * 4;
m_rSequence.realloc(nNewLength);