diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-27 23:32:18 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-08-28 11:05:27 +0200 |
commit | c2de8cb841aa330b96f488c19a56fc20457c37b3 (patch) | |
tree | 3aa2a191c74e002ddee328ee289c51e7798ddbb5 /vcl/qa/cppunit/timer.cxx | |
parent | dd2fcfcadcb3027f5ae727697be77943358cfd28 (diff) |
Fix typos in code
It passed "make check" on Linux
Change-Id: I37715efd1fdeee53f2ebb747d668553ae4a75290
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101511
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/qa/cppunit/timer.cxx')
-rw-r--r-- | vcl/qa/cppunit/timer.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/qa/cppunit/timer.cxx b/vcl/qa/cppunit/timer.cxx index 4071cd0fdc3b..112e3f611b96 100644 --- a/vcl/qa/cppunit/timer.cxx +++ b/vcl/qa/cppunit/timer.cxx @@ -470,21 +470,21 @@ namespace { class IdleSerializer : public Idle { sal_uInt32 mnPosition; - sal_uInt32 &mrProcesed; + sal_uInt32 &mrProcessed; public: IdleSerializer(const char *pDebugName, TaskPriority ePrio, - sal_uInt32 nPosition, sal_uInt32 &rProcesed) + sal_uInt32 nPosition, sal_uInt32 &rProcessed) : Idle( pDebugName ) , mnPosition( nPosition ) - , mrProcesed( rProcesed ) + , mrProcessed( rProcessed ) { SetPriority(ePrio); Start(); } virtual void Invoke() override { - ++mrProcesed; - CPPUNIT_ASSERT_EQUAL_MESSAGE( "Ignored prio", mnPosition, mrProcesed ); + ++mrProcessed; + CPPUNIT_ASSERT_EQUAL_MESSAGE( "Ignored prio", mnPosition, mrProcessed ); } }; |