summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oox/source/export/drawingml.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 58b2b1fbb2a7..9f02652f2b04 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -910,7 +910,7 @@ void DrawingML::WriteGradientFill2(
basegfx::ColorStops aNewColorStops;
basegfx::ColorStops aNewAlphaStops;
- // add mirrored gadients, scaled to [0.0 .. 0.5]
+ // add mirrored gradients, scaled to [0.0 .. 0.5]
basegfx::ColorStops::const_reverse_iterator aRevCurrColor(aColorStops.rbegin());
basegfx::ColorStops::const_reverse_iterator aRevCurrAlpha(aAlphaStops.rbegin());
@@ -947,7 +947,7 @@ void DrawingML::WriteGradientFill2(
// case awt::GradientStyle_RECT:
// case awt::GradientStyle_SQUARE:
{
- // all these types need the gadiens to be mirrored
+ // all these types need the gradients to be mirrored
basegfx::utils::reverseColorStops(aColorStops);
basegfx::utils::reverseColorStops(aAlphaStops);