Changed argument type.

This commit is contained in:
dirk
2016-01-23 20:56:43 +01:00
parent 14e606db14
commit e11edabb5a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4476,7 +4476,7 @@ void Magick::Image::splice(const Geometry &geometry_,
splice(geometry_);
}
void Magick::Image::spread(const size_t amount_)
void Magick::Image::spread(const double amount_)
{
MagickCore::Image
*newImage;
+1 -1
View File
@@ -1357,7 +1357,7 @@ namespace Magick
const GravityType gravity_);
// Spread pixels randomly within image by specified ammount
void spread(const size_t amount_=3);
void spread(const double amount_=3.0);
// Returns the statistics for this image.
Magick::ImageStatistics statistics() const;