summaryrefslogtreecommitdiff
path: root/vcl/source/outdev/textline.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-03-02 09:38:03 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-02 12:43:32 +0000
commit65434e8701ab71c8bff8b0ac722d41b0592483dc (patch)
tree6970694ffae28089d60082bf1c5fe71a21a75336 /vcl/source/outdev/textline.cxx
parent5bea199bae9986d7276a9b2379a577c6cea552ed (diff)
Fix typos
Change-Id: I72db7ff99cde394bc161dfd835bfb0d9a47a53d1 Reviewed-on: https://gerrit.libreoffice.org/34780 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/outdev/textline.cxx')
-rw-r--r--vcl/source/outdev/textline.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/textline.cxx b/vcl/source/outdev/textline.cxx
index 1e2970c470db..ba974d525b63 100644
--- a/vcl/source/outdev/textline.cxx
+++ b/vcl/source/outdev/textline.cxx
@@ -96,7 +96,7 @@ void OutputDevice::ImplDrawWaveLine( long nBaseX, long nBaseY,
long nStartX = nBaseX + nDistX;
long nStartY = nBaseY + nDistY;
- // If the height is 1 pixel, it's enough ouput a line
+ // If the height is 1 pixel, it's enough output a line
if ( (nLineWidth == 1) && (nHeight == 1) )
{
mpGraphics->SetLineColor( ImplColorToSal( rColor ) );
@@ -123,7 +123,7 @@ void OutputDevice::ImplDrawWaveLine( long nBaseX, long nBaseY,
long nPixWidth;
long nPixHeight;
bool bDrawPixAsRect;
- // On printers that ouput pixel via DrawRect()
+ // On printers that output pixel via DrawRect()
if ( (GetOutDevType() == OUTDEV_PRINTER) || (nLineWidth > 1) )
{
if ( mbLineColor || mbInitLineColor )