Page 1 of 1

Minor documentation issue

Posted: 2009-02-09T04:26:29-07:00
by mkoppanen
Here is a patch against trunk:

Code: Select all

Index: magick-image.c
===================================================================
--- magick-image.c      (revision 14016)
+++ magick-image.c      (working copy)
@@ -3090,13 +3090,15 @@
 %        const MagickFunction function,const unsigned long number_arguments,
 %        const double *arguments)
 %      MagickBooleanType MagickFunctionImageChannel(MagickWand *wand,
-%        const MagickFunction function,const unsigned long number_arguments,
-%        const double *arguments)
+%        const ChannelType channel,const MagickFunction function,
+%        const unsigned long number_arguments,const double *arguments)
 %
 %  A description of each parameter follows:
 %
 %    o wand: the magick wand.
 %
+%    o channel: the channel(s).
+%
 %    o function: the image function.
 %
 %    o number_arguments: the number of function arguments.

Re: Minor documentation issue

Posted: 2009-02-09T06:57:15-07:00
by magick
We applied your patch against the Subversion trunk. Thanks.

P.S. If you want credit for your patches, be sure to include a patch against the ChangeLog file.

Re: Minor documentation issue

Posted: 2009-02-15T15:38:55-07:00
by mkoppanen
Hi,

one param seems to be missing from the docs of MagickSetSizeOffset:

Code: Select all

Index: magick-property.c
===================================================================
--- magick-property.c   (revision 14060)
+++ magick-property.c   (working copy)
@@ -2509,6 +2509,8 @@
 %
 %    o rows: the rows in pixels.
 %
+%    o offset: the image offset.
+%
 */
 WandExport MagickBooleanType MagickSetSizeOffset(MagickWand *wand,
   const unsigned long columns,const unsigned long rows,const long offset)

Re: Minor documentation issue

Posted: 2009-02-15T17:37:58-07:00
by magick
Updated Subversion with your patch. Thanks.