summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-12-19 10:24:49 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-12-19 10:26:41 +0100
commit8925ea5a55606e657fe2794ddcdd9e83eb0ba75f (patch)
tree691ce8f8427f4d8c9e5d1cba8ea6c1b03a3f1b83 /vcl
parent4087d269052e6cc9e8fc1816e09946eafd261e7c (diff)
Fix typo
Change-Id: Ibd7a2c28f086577563151e20ed51ec1030559b3c Reviewed-on: https://gerrit.libreoffice.org/85493 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/qa/cppunit/complextext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/complextext.cxx b/vcl/qa/cppunit/complextext.cxx
index d3cdc230c0bc..85a5b3991167 100644
--- a/vcl/qa/cppunit/complextext.cxx
+++ b/vcl/qa/cppunit/complextext.cxx
@@ -102,13 +102,13 @@ void VclComplexTextTest::testArabic()
tools::Rectangle aInput;
tools::Rectangle aRect = pOutDev->GetTextRect( aInput, aOneTwoThree );
- // now rotate 270 degress
+ // now rotate 270 degrees
vcl::Font aRotated( aFont );
aRotated.SetOrientation( 2700 );
pOutDev->SetFont( aRotated );
tools::Rectangle aRectRot = pOutDev->GetTextRect( aInput, aOneTwoThree );
- // Check that we did do the rotation ...
+ // Check that we did do the rotation...
fprintf( stderr, "%ld %ld %ld %ld\n",
aRect.GetWidth(), aRect.GetHeight(),
aRectRot.GetWidth(), aRectRot.GetHeight() );