From 8925ea5a55606e657fe2794ddcdd9e83eb0ba75f Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 19 Dec 2019 10:24:49 +0100 Subject: Fix typo Change-Id: Ibd7a2c28f086577563151e20ed51ec1030559b3c Reviewed-on: https://gerrit.libreoffice.org/85493 Reviewed-by: Julien Nabet Tested-by: Julien Nabet --- vcl/qa/cppunit/complextext.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl') 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() ); -- cgit