[Libreoffice-commits] core.git: 2 commits - include/vcl jvmfwk/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Thu Dec 5 09:07:25 UTC 2019
include/vcl/TaskStopwatch.hxx | 2 +-
jvmfwk/source/fwkutil.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit a0c1ce373f4f66dca68914d5d4555e5017d651ad
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Dec 4 20:22:25 2019 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Dec 5 10:06:06 2019 +0100
Fix typo
Change-Id: Ie97db56e4a7c59c23fa858f4f09c72fdbc381799
Reviewed-on: https://gerrit.libreoffice.org/84484
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/include/vcl/TaskStopwatch.hxx b/include/vcl/TaskStopwatch.hxx
index fdcc6bdf2ed4..25daf9237133 100644
--- a/include/vcl/TaskStopwatch.hxx
+++ b/include/vcl/TaskStopwatch.hxx
@@ -26,7 +26,7 @@
* TODO: merge into the general Scheduler, so this can also be used to track
* Task runtimes in a more general way.
* TODO: handle fast iterations, where continueIter is called multiple times
- * per tick, by counting the iterations per tick and use that for appoximation.
+ * per tick, by counting the iterations per tick and use that for approximation.
**/
class VCL_DLLPUBLIC TaskStopwatch
{
commit 5dc9ae616cae7d37e0e3624be9d87bb61900e272
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Dec 4 20:22:27 2019 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Dec 5 10:05:40 2019 +0100
Fix typo
Change-Id: I8f853990d38dd6f5dd1dd521f022e9874e1924c8
Reviewed-on: https://gerrit.libreoffice.org/84485
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/jvmfwk/source/fwkutil.cxx b/jvmfwk/source/fwkutil.cxx
index e14057999208..a52013871340 100644
--- a/jvmfwk/source/fwkutil.cxx
+++ b/jvmfwk/source/fwkutil.cxx
@@ -128,7 +128,7 @@ rtl::ByteSequence decodeBase16(const rtl::ByteSequence& data)
static const char decodingTable[] =
{'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
sal_Int32 lenData = data.getLength();
- sal_Int32 lenBuf = lenData / 2; //always divisable by two
+ sal_Int32 lenBuf = lenData / 2; //always divisible by two
std::unique_ptr<unsigned char[]> pBuf(new unsigned char[lenBuf]);
const sal_Int8* pData = data.getConstArray();
for (sal_Int32 i = 0; i < lenBuf; i++)
More information about the Libreoffice-commits
mailing list