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/montage.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/montage.d')
| -rw-r--r-- | dmagick/c/montage.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dmagick/c/montage.d b/dmagick/c/montage.d index 0603e79..509f04d 100644 --- a/dmagick/c/montage.d +++ b/dmagick/c/montage.d @@ -55,11 +55,11 @@ extern(C) signature; } - Image* MontageImages(const Image*, const MontageInfo*, ExceptionInfo*); - Image* MontageImageList(const ImageInfo*, const MontageInfo*, const Image*, ExceptionInfo*); + Image* MontageImages(const(Image)*, const(MontageInfo)*, ExceptionInfo*); + Image* MontageImageList(const(ImageInfo)*, const(MontageInfo)*, const(Image)*, ExceptionInfo*); - MontageInfo* CloneMontageInfo(const ImageInfo*, const MontageInfo*); + MontageInfo* CloneMontageInfo(const(ImageInfo)*, const(MontageInfo)*); MontageInfo* DestroyMontageInfo(MontageInfo*); - void GetMontageInfo(const ImageInfo*, MontageInfo*); + void GetMontageInfo(const(ImageInfo)*, MontageInfo*); } |
