summaryrefslogtreecommitdiff
path: root/cppcanvas
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-04-10 16:04:58 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-04-20 07:04:06 +0200
commit0a3707c34943f02755097ccb03558226f234d991 (patch)
tree85fe5c55bf959ce4960a50b626e8fb56ec058b03 /cppcanvas
parent8772d59141b73173055042f92b96811616961524 (diff)
Fix typo
Change-Id: I9f75142304673c7512f92ae82d8d6cfee6f4a8a3 Reviewed-on: https://gerrit.libreoffice.org/70995 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'cppcanvas')
-rw-r--r--cppcanvas/source/mtfrenderer/implrenderer.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppcanvas/source/mtfrenderer/implrenderer.cxx b/cppcanvas/source/mtfrenderer/implrenderer.cxx
index 241edaa17bb2..0b618e3ff365 100644
--- a/cppcanvas/source/mtfrenderer/implrenderer.cxx
+++ b/cppcanvas/source/mtfrenderer/implrenderer.cxx
@@ -932,7 +932,7 @@ namespace cppcanvas
aReliefColor = COL_LIGHTGRAY;
- // we don't have a automatic color, so black is always
+ // we don't have an automatic color, so black is always
// drawn on white (literally copied from
// vcl/source/gdi/outdev3.cxx)
if( aTextColor == COL_BLACK )
@@ -1400,7 +1400,7 @@ namespace cppcanvas
}
else
{
- // #120994# Do switch on/off LineColor, even when a overriding one is set
+ // #120994# Do switch on/off LineColor, even when an overriding one is set
bool bSetting(static_cast<MetaLineColorAction*>(pCurrAct)->IsSetting());
rStates.getState().isLineColorSet = bSetting;
@@ -1417,7 +1417,7 @@ namespace cppcanvas
}
else
{
- // #120994# Do switch on/off FillColor, even when a overriding one is set
+ // #120994# Do switch on/off FillColor, even when an overriding one is set
bool bSetting(static_cast<MetaFillColorAction*>(pCurrAct)->IsSetting());
rStates.getState().isFillColorSet = bSetting;
@@ -1455,7 +1455,7 @@ namespace cppcanvas
}
else
{
- // #120994# Do switch on/off TextFillColor, even when a overriding one is set
+ // #120994# Do switch on/off TextFillColor, even when an overriding one is set
bool bSetting(static_cast<MetaTextFillColorAction*>(pCurrAct)->IsSetting());
rStates.getState().isTextFillColorSet = bSetting;
@@ -1472,7 +1472,7 @@ namespace cppcanvas
}
else
{
- // #120994# Do switch on/off TextLineColor, even when a overriding one is set
+ // #120994# Do switch on/off TextLineColor, even when an overriding one is set
bool bSetting(static_cast<MetaTextLineColorAction*>(pCurrAct)->IsSetting());
rStates.getState().isTextLineColorSet = bSetting;
@@ -2910,7 +2910,7 @@ namespace cppcanvas
aStateStack.clearStateStack();
// Setup local state, such that the metafile renders
- // itself into a one-by-one square at the origin for
+ // itself into an one-by-one square at the origin for
// identity view and render transformations
aStateStack.getState().transform.scale( 1.0 / aMtfSizePix.Width(),
1.0 / aMtfSizePix.Height() );