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/distort.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/distort.d')
| -rw-r--r-- | dmagick/c/distort.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dmagick/c/distort.d b/dmagick/c/distort.d index bb32224..4c15839 100644 --- a/dmagick/c/distort.d +++ b/dmagick/c/distort.d @@ -38,6 +38,6 @@ extern(C) VoronoiColorInterpolate = DistortImageMethod.SentinelDistortion } - Image* DistortImage(const Image*, const DistortImageMethod, const size_t, const double*, MagickBooleanType, ExceptionInfo* exception); - Image* SparseColorImage(const Image*, const ChannelType, const SparseColorMethod, const size_t, const double*, ExceptionInfo*); + Image* DistortImage(const(Image)*, const DistortImageMethod, const size_t, const(double)*, MagickBooleanType, ExceptionInfo* exception); + Image* SparseColorImage(const(Image)*, const ChannelType, const SparseColorMethod, const size_t, const(double)*, ExceptionInfo*); } |
