diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sdr/primitive2d/sdrdecompositiontools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx b/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx index 331fe74b99dc..fba547f92cbb 100644 --- a/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx +++ b/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx @@ -332,10 +332,10 @@ void SlideBackgroundFillPrimitive2D::get2DDecomposition( } // tdf#149650 allow remember/detect of potential recursion for content creation. - // use a std::set association - instead of a single bool or adress - due to the + // use a std::set association - instead of a single bool or address - due to the // possibility of multiple SlideBackgroundFillPrimitive2D's being used at the same // refresh. Also possible would be a local member (bool), but that just makes the - // class more complicated. Working wth the adress is not a problem here since below + // class more complicated. Working with the address is not a problem here since below // it reliably gets added/removed while being incarnated only. static std::set<const SlideBackgroundFillPrimitive2D*> potentiallyActiveRecursion; |