diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-01-19 09:58:23 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-19 10:00:32 +0000 |
commit | c6b8c461bb4b119f833517112813def858903415 (patch) | |
tree | 3c10d3d4a09d81028999ceb63149bf33dd58875c /vcl | |
parent | 75a6a51a9da2aa3b6eb0f0e43c0130844f6ab86c (diff) |
WaE: fix misc. SvStream operator problems.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/graphictools.hxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/graphictools.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/vcl/graphictools.hxx b/vcl/inc/vcl/graphictools.hxx index c027f6a04691..78be3b921fad 100644 --- a/vcl/inc/vcl/graphictools.hxx +++ b/vcl/inc/vcl/graphictools.hxx @@ -274,7 +274,7 @@ public: GradientType aGradientType, // TODO: Transparent gradients (orthogonal to normal ones) Color aGradient1stColor, // TODO: vector of colors and offsets Color aGradient2ndColor, - int aGradientStepCount, // numbers of steps to render the gradient. gradientStepsInfinite means infinitely many. + sal_Int32 aGradientStepCount, // numbers of steps to render the gradient. gradientStepsInfinite means infinitely many. const Graphic& aFillGraphic ); // accessors @@ -348,7 +348,7 @@ private: GradientType maGradientType; Color maGradient1stColor; Color maGradient2ndColor; - int maGradientStepCount; + sal_Int32 maGradientStepCount; Graphic maFillGraphic; }; diff --git a/vcl/source/gdi/graphictools.cxx b/vcl/source/gdi/graphictools.cxx index 3f6a0ec59a34..d945e5328e63 100644 --- a/vcl/source/gdi/graphictools.cxx +++ b/vcl/source/gdi/graphictools.cxx @@ -343,7 +343,7 @@ SvtGraphicFill::SvtGraphicFill( const PolyPolygon& rPath, GradientType aGradientType, Color aGradient1stColor, Color aGradient2ndColor, - int aGradientStepCount, + sal_Int32 aGradientStepCount, const Graphic& aFillGraphic ) : maPath( rPath ), maFillColor( aFillColor ), |