summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx
diff options
context:
space:
mode:
authorArmin Le Grand <Armin.Le.Grand@Sun.COM>2009-09-15 19:08:28 +0200
committerArmin Le Grand <Armin.Le.Grand@Sun.COM>2009-09-15 19:08:28 +0200
commit52ddaac170a54bcbc5505e73a4e8ca93a19a8913 (patch)
treea9e7236f693ecf9960fa53fcb69a59422a551cd8 /drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx
parenta38342aa7ff93dbf1e3432d42afecac778eb80a1 (diff)
#i97509# changed base classes for primitives which need no buffering
Diffstat (limited to 'drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx')
-rw-r--r--drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx b/drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx
index 8e820f61fbb2..283123621cee 100644
--- a/drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx
@@ -167,7 +167,7 @@ namespace drawinglayer
FillGradientPrimitive2D::FillGradientPrimitive2D(
const basegfx::B2DRange& rObjectRange,
const attribute::FillGradientAttribute& rFillGradient)
- : BufDecPrimitive2D(),
+ : BufferedDecompositionPrimitive2D(),
maObjectRange(rObjectRange),
maFillGradient(rFillGradient)
{
@@ -175,7 +175,7 @@ namespace drawinglayer
bool FillGradientPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
{
- if(BufDecPrimitive2D::operator==(rPrimitive))
+ if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
{
const FillGradientPrimitive2D& rCompare = (FillGradientPrimitive2D&)rPrimitive;