From e080979186e624ba7fed28ea9a76dfdf4feb635a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 22:47:18 +0100 Subject: change const for the funtion params --- dmagick/c/distort.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dmagick/c/distort.d') 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*); } -- cgit v1.2.3