diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-03-25 19:33:07 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-03-25 22:14:12 +0100 |
commit | 0069dbf431e2596ab2fc4e0759e5457187fb26dc (patch) | |
tree | d1094975c2a6890dbf4f831c0af00ffb4307ccae /drawinglayer | |
parent | 5a100a3b62da5ea94d4707c10633023065e1d04f (diff) |
Fix typo
Change-Id: Idd197f300e49dbce729e9399817bd36273d8de02
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91069
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/tools/wmfemfhelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/tools/wmfemfhelper.cxx b/drawinglayer/source/tools/wmfemfhelper.cxx index 80989a2edccf..b68f5b15cc92 100644 --- a/drawinglayer/source/tools/wmfemfhelper.cxx +++ b/drawinglayer/source/tools/wmfemfhelper.cxx @@ -2433,7 +2433,7 @@ namespace wmfemfhelper { /** CHECKED, WORKS WELL */ const MetaLineColorAction* pA = static_cast<const MetaLineColorAction*>(pAction); - // tdf#89901 do as OutDev does: COL_TRANSPARENT deacvtivates line draw + // tdf#89901 do as OutDev does: COL_TRANSPARENT deactivates line draw const bool bActive(pA->IsSetting() && COL_TRANSPARENT != pA->GetColor()); rPropertyHolders.Current().setLineColorActive(bActive); @@ -2446,7 +2446,7 @@ namespace wmfemfhelper { /** CHECKED, WORKS WELL */ const MetaFillColorAction* pA = static_cast<const MetaFillColorAction*>(pAction); - // tdf#89901 do as OutDev does: COL_TRANSPARENT deacvtivates polygon fill + // tdf#89901 do as OutDev does: COL_TRANSPARENT deactivates polygon fill const bool bActive(pA->IsSetting() && COL_TRANSPARENT != pA->GetColor()); rPropertyHolders.Current().setFillColorActive(bActive); |