summaryrefslogtreecommitdiff
path: root/vcl/source/edit
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:47:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:05:50 +0200
commit73e3604fc16695758b9a7f55051d2f786f74be2d (patch)
tree357784a45ad575a8de6d6d9450fb18190091c873 /vcl/source/edit
parent396473a3d6ddd1f1ee2d4e0fd3bae5c41d2cc3fd (diff)
Fixing '....' and '..'
Change-Id: I926069d6c1f2712e5020d930f7ff6c62fd00e912 Reviewed-on: https://gerrit.libreoffice.org/78667 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/source/edit')
-rw-r--r--vcl/source/edit/texteng.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/edit/texteng.cxx b/vcl/source/edit/texteng.cxx
index 0b5303fcf9e4..135f86d1ef0a 100644
--- a/vcl/source/edit/texteng.cxx
+++ b/vcl/source/edit/texteng.cxx
@@ -174,7 +174,7 @@ void TextEngine::SetFont( const vcl::Font& rFont )
maFont = rFont;
// #i40221# As the font's color now defaults to transparent (since i35764)
// we have to choose a useful textcolor in this case.
- // Otherwise maTextColor and maFont.GetColor() are both transparent....
+ // Otherwise maTextColor and maFont.GetColor() are both transparent...
if( rFont.GetColor() == COL_TRANSPARENT )
maTextColor = COL_BLACK;
else
@@ -559,7 +559,7 @@ TextPaM TextEngine::ImpDeleteText( const TextSelection& rSel )
pPortion->MarkSelectionInvalid( aStartPaM.GetIndex() );
}
- // the beginning of EndNodes....
+ // the beginning of EndNodes...
nEndNode = nStartNode+1; // the other paragraphs were deleted
nChars = aEndPaM.GetIndex();
if ( nChars )
@@ -572,7 +572,7 @@ TextPaM TextEngine::ImpDeleteText( const TextSelection& rSel )
pPortion->MarkSelectionInvalid( 0 );
}
- // connect....
+ // connect...
aStartPaM = ImpConnectParagraphs( nStartNode, nEndNode );
}
else