diff options
| author | Mike Wey | 2011-01-09 20:52:03 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 20:52:03 +0100 |
| commit | 0bd6744310e0b209f3c5911a4e68d453e867914a (patch) | |
| tree | a916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/color.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/color.d')
| -rw-r--r-- | dmagick/c/color.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dmagick/c/color.d b/dmagick/c/color.d index be66bef..44be838 100644 --- a/dmagick/c/color.d +++ b/dmagick/c/color.d @@ -54,8 +54,8 @@ extern(C) char** GetColorList(const char*, size_t*, ExceptionInfo*); - const(ColorInfo*) GetColorInfo(const char*, ExceptionInfo*); - const(ColorInfo**) GetColorInfoList(const char*, size_t*, ExceptionInfo*); + const(ColorInfo)* GetColorInfo(const char*, ExceptionInfo*); + const(ColorInfo)** GetColorInfoList(const char*, size_t*, ExceptionInfo*); MagickBooleanType ColorComponentGenesis(); MagickBooleanType IsColorSimilar(const Image*, const PixelPacket*, const PixelPacket*); |
