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/sheer.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dmagick/c/sheer.d') diff --git a/dmagick/c/sheer.d b/dmagick/c/sheer.d index 6555e65..fd53fb1 100644 --- a/dmagick/c/sheer.d +++ b/dmagick/c/sheer.d @@ -6,8 +6,8 @@ import dmagick.c.image; extern(C) { - Image* AffineTransformImage(const Image*, const AffineMatrix*, ExceptionInfo*); - Image* DeskewImage(const Image*, const double, ExceptionInfo*); - Image* RotateImage(const Image*, const double, ExceptionInfo*); - Image* ShearImage(const Image*, const double, const double, ExceptionInfo*); + Image* AffineTransformImage(const(Image)*, const(AffineMatrix)*, ExceptionInfo*); + Image* DeskewImage(const(Image)*, const double, ExceptionInfo*); + Image* RotateImage(const(Image)*, const double, ExceptionInfo*); + Image* ShearImage(const(Image)*, const double, const double, ExceptionInfo*); } -- cgit v1.2.3