helly Mon Mar 6 10:06:15 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/ming ming.c Log: - MFH Proto fixes http://cvs.php.net/viewcvs.cgi/php-src/ext/ming/ming.c?r1=1.79.2.3&r2=1.79.2.4&diff_format=u Index: php-src/ext/ming/ming.c diff -u php-src/ext/ming/ming.c:1.79.2.3 php-src/ext/ming/ming.c:1.79.2.4 --- php-src/ext/ming/ming.c:1.79.2.3 Sun Jan 1 12:50:09 2006 +++ php-src/ext/ming/ming.c Mon Mar 6 10:06:15 2006 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ming.c,v 1.79.2.3 2006/01/01 12:50:09 sniper Exp $ */ +/* $Id: ming.c,v 1.79.2.4 2006/03/06 10:06:15 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -296,8 +296,8 @@ /* {{{ SWFAction */ -/* {{{ proto object swfaction::__construct(string) - Returns a new SWFAction object, compiling the given script */ +/* {{{ proto void swfaction::__construct(string) + Creates a new SWFAction object, compiling the given script */ PHP_METHOD(swfaction, __construct) { SWFAction action; @@ -345,8 +345,8 @@ /* {{{ SWFBitmap */ -/* {{{ proto class swfbitmap::__construct(mixed file [, mixed maskfile]) - Returns a new SWFBitmap object from jpg (with optional mask) or dbl file */ +/* {{{ proto void swfbitmap::__construct(mixed file [, mixed maskfile]) + Creates a new SWFBitmap object from jpg (with optional mask) or dbl file */ PHP_METHOD(swfbitmap, __construct) { zval **zfile, **zmask = NULL; @@ -440,8 +440,8 @@ /* {{{ SWFButton */ -/* {{{ proto object swfbutton::__construct() - Returns a new SWFButton object */ +/* {{{ proto void swfbutton::__construct() + Creates a new SWFButton object */ PHP_METHOD(swfbutton, __construct) { SWFButton button = newSWFButton(); @@ -1204,8 +1204,8 @@ /* {{{ SWFFill */ -/* {{{ proto class swffill::__construct() - Returns a new SWFFill object */ +/* {{{ proto void swffill::__construct() + Creates a new SWFFill object */ PHP_METHOD(swffill, __construct) { php_error_docref(NULL TSRMLS_CC, E_ERROR, "Instantiating SWFFill won't do any good- use SWFShape::addFill() instead"); @@ -1404,8 +1404,8 @@ } /* }}} */ -/* {{{ proto object swffont::__construct(string filename) - Returns a new SWFFont object from given file */ +/* {{{ proto void swffont::__construct(string filename) + Creates a new SWFFont object from given file */ PHP_METHOD(swffont, __construct) { zval **zfile; @@ -1594,8 +1594,8 @@ /* {{{ SWFGradient */ -/* {{{ proto class swfgradient::__construct() - Returns a new SWFGradient object */ +/* {{{ proto void swfgradient::__construct() + Creates a new SWFGradient object */ PHP_METHOD(swfgradient, __construct) { SWFGradient gradient = newSWFGradient(); @@ -1669,8 +1669,8 @@ /* {{{ SWFMorph */ -/* {{{ proto object swfmorph::__construct() - Returns a new SWFMorph object */ +/* {{{ proto void swfmorph::__construct() + Creates a new SWFMorph object */ PHP_METHOD(swfmorph, __construct) { SWFMorph morph = newSWFMorphShape(); @@ -1752,8 +1752,8 @@ } /* }}} */ -/* {{{ proto class swfsound::__construct(string filename, int flags) - Returns a new SWFSound object from given file */ +/* {{{ proto void swfsound::__construct(string filename, int flags) + Creates a new SWFSound object from given file */ PHP_METHOD(swfsound, __construct) { zval **zfile, **zflags; @@ -2088,7 +2088,7 @@ /* {{{ SWFMovie */ -/* {{{ proto object swfmovie::__construct(int version) +/* {{{ proto void swfmovie::__construct(int version) Creates swfmovie object according to the passed version */ PHP_METHOD(swfmovie, __construct) { @@ -2695,8 +2695,8 @@ /* {{{ SWFShape */ -/* {{{ proto object swfshape::__construct() - Returns a new SWFShape object */ +/* {{{ proto void swfshape::__construct() + Creates a new SWFShape object */ PHP_METHOD(swfshape, __construct) { SWFShape shape = newSWFShape(); @@ -3216,8 +3216,8 @@ /* {{{ SWFSprite */ -/* {{{ proto class swfsprite::__construct() - Returns a new SWFSprite object */ +/* {{{ proto void swfsprite::__construct() + Creates a new SWFSprite object */ PHP_METHOD(swfsprite, __construct) { SWFMovieClip sprite = newSWFMovieClip(); @@ -3401,8 +3401,8 @@ /* {{{ SWFText */ -/* {{{ proto class swftext::__construct() - Returns new SWFText object */ +/* {{{ proto void swftext::__construct() + Creates new SWFText object */ PHP_METHOD(swftext, __construct) { SWFText text = newSWFText2(); @@ -3687,8 +3687,8 @@ /* {{{ SWFTextField */ -/* {{{ proto object swftextfield::__construct([int flags]) - Returns a new SWFTextField object */ +/* {{{ proto void swftextfield::__construct([int flags]) + Creates a new SWFTextField object */ PHP_METHOD(swftextfield, __construct) { zval **flags;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php