summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 23:17:53 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:15:58 +0200
commit22ef2a15bb5cae4b877449237bb8d3e41f2d49db (patch)
tree170b77935be16e2d4bdb8fd72e0fa576d4f68ea0 /comphelper
parentc12c84e6d8f26b7c7dfd4d0daa642879b435d2c6 (diff)
Fixing "...."
Change-Id: Id005a7531d546dd43de13b49bcb3e93081c5ad8d Reviewed-on: https://gerrit.libreoffice.org/78679 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
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);