diff options
| author | Mike Wey | 2011-01-09 22:47:18 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 22:47:18 +0100 |
| commit | e080979186e624ba7fed28ea9a76dfdf4feb635a (patch) | |
| tree | ccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/histogram.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/histogram.d')
| -rw-r--r-- | dmagick/c/histogram.d | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dmagick/c/histogram.d b/dmagick/c/histogram.d index 2341186..1722415 100644 --- a/dmagick/c/histogram.d +++ b/dmagick/c/histogram.d @@ -21,13 +21,13 @@ extern(C) count; } - ColorPacket* GetImageHistogram(const Image*, size_t*, ExceptionInfo*); + ColorPacket* GetImageHistogram(const(Image)*, size_t*, ExceptionInfo*); - Image* UniqueImageColors(const Image*, ExceptionInfo*); + Image* UniqueImageColors(const(Image)*, ExceptionInfo*); - MagickBooleanType IsHistogramImage(const Image*, ExceptionInfo*); - MagickBooleanType IsPaletteImage(const Image*, ExceptionInfo*); + MagickBooleanType IsHistogramImage(const(Image)*, ExceptionInfo*); + MagickBooleanType IsPaletteImage(const(Image)*, ExceptionInfo*); MagickBooleanType MinMaxStretchImage(Image*, const ChannelType, const double, const double); - size_t GetNumberColors(const Image*, FILE*, ExceptionInfo*); + size_t GetNumberColors(const(Image)*, FILE*, ExceptionInfo*); } |
