From 4d630328996b96fce1f6cd54e687e54fbfdb6aa3 Mon Sep 17 00:00:00 2001 From: cristy Date: Thu, 3 Jun 2010 18:52:04 +0000 Subject: [PATCH] --- Magick++/lib/Magick++/STL.h | 4 ++-- Magick++/lib/STL.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Magick++/lib/Magick++/STL.h b/Magick++/lib/Magick++/STL.h index 4072d6557..878486ad4 100644 --- a/Magick++/lib/Magick++/STL.h +++ b/Magick++/lib/Magick++/STL.h @@ -716,7 +716,7 @@ namespace Magick { public: matteFloodfillImage( const Color &target_ , - const size_t matte_, + const unsigned int matte_, const ssize_t x_, const ssize_t y_, const PaintMethod method_ ); @@ -724,7 +724,7 @@ namespace Magick private: Color _target; - size_t _matte; + unsigned int _matte; ssize_t _x; ssize_t _y; PaintMethod _method; diff --git a/Magick++/lib/STL.cpp b/Magick++/lib/STL.cpp index e6fe6fc8d..e17b7669f 100644 --- a/Magick++/lib/STL.cpp +++ b/Magick++/lib/STL.cpp @@ -678,7 +678,7 @@ void Magick::mapImage::operator()( Magick::Image &image_ ) const // Floodfill designated area with a matte value Magick::matteFloodfillImage::matteFloodfillImage( const Color &target_ , - const size_t matte_, + const unsigned int matte_, const ssize_t x_, const ssize_t y_, const PaintMethod method_ ) : _target( target_ ), -- 2.40.0