helly Mon Mar 6 10:06:02 2006 UTC Modified files: /php-src/ext/ming ming.c Log: - Proto fixes http://cvs.php.net/viewcvs.cgi/php-src/ext/ming/ming.c?r1=1.84&r2=1.85&diff_format=u Index: php-src/ext/ming/ming.c diff -u php-src/ext/ming/ming.c:1.84 php-src/ext/ming/ming.c:1.85 --- php-src/ext/ming/ming.c:1.84 Mon Mar 6 10:03:25 2006 +++ php-src/ext/ming/ming.c Mon Mar 6 10:06:02 2006 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ming.c,v 1.84 2006/03/06 10:03:25 helly Exp $ */ +/* $Id: ming.c,v 1.85 2006/03/06 10:06:02 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -297,7 +297,7 @@ /* {{{ SWFAction */ /* {{{ proto void swfaction::__construct(string) - Returns a new SWFAction object, compiling the given script */ + Creates a new SWFAction object, compiling the given script */ PHP_METHOD(swfaction, __construct) { SWFAction action; @@ -346,7 +346,7 @@ /* {{{ SWFBitmap */ /* {{{ proto void swfbitmap::__construct(mixed file [, mixed maskfile]) - Returns a new SWFBitmap object from jpg (with optional mask) or dbl file */ + Creates a new SWFBitmap object from jpg (with optional mask) or dbl file */ PHP_METHOD(swfbitmap, __construct) { zval **zfile, **zmask = NULL; @@ -441,7 +441,7 @@ /* {{{ SWFButton */ /* {{{ proto void swfbutton::__construct() - Returns a new SWFButton object */ + Creates a new SWFButton object */ PHP_METHOD(swfbutton, __construct) { SWFButton button = newSWFButton(); @@ -1205,7 +1205,7 @@ /* {{{ SWFFill */ /* {{{ proto void swffill::__construct() - Returns a new SWFFill object */ + 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"); @@ -1405,7 +1405,7 @@ /* }}} */ /* {{{ proto void swffont::__construct(string filename) - Returns a new SWFFont object from given file */ + Creates a new SWFFont object from given file */ PHP_METHOD(swffont, __construct) { zval **zfile; @@ -1595,7 +1595,7 @@ /* {{{ SWFGradient */ /* {{{ proto void swfgradient::__construct() - Returns a new SWFGradient object */ + Creates a new SWFGradient object */ PHP_METHOD(swfgradient, __construct) { SWFGradient gradient = newSWFGradient(); @@ -1670,7 +1670,7 @@ /* {{{ SWFMorph */ /* {{{ proto void swfmorph::__construct() - Returns a new SWFMorph object */ + Creates a new SWFMorph object */ PHP_METHOD(swfmorph, __construct) { SWFMorph morph = newSWFMorphShape(); @@ -1753,7 +1753,7 @@ /* }}} */ /* {{{ proto void swfsound::__construct(string filename, int flags) - Returns a new SWFSound object from given file */ + Creates a new SWFSound object from given file */ PHP_METHOD(swfsound, __construct) { zval **zfile, **zflags; @@ -2694,7 +2694,7 @@ /* {{{ SWFShape */ /* {{{ proto void swfshape::__construct() - Returns a new SWFShape object */ + Creates a new SWFShape object */ PHP_METHOD(swfshape, __construct) { SWFShape shape = newSWFShape(); @@ -3215,7 +3215,7 @@ /* {{{ SWFSprite */ /* {{{ proto void swfsprite::__construct() - Returns a new SWFSprite object */ + Creates a new SWFSprite object */ PHP_METHOD(swfsprite, __construct) { SWFMovieClip sprite = newSWFMovieClip(); @@ -3400,7 +3400,7 @@ /* {{{ SWFText */ /* {{{ proto void swftext::__construct() - Returns new SWFText object */ + Creates new SWFText object */ PHP_METHOD(swftext, __construct) { SWFText text = newSWFText2(); @@ -3686,7 +3686,7 @@ /* {{{ SWFTextField */ /* {{{ proto void swftextfield::__construct([int flags]) - Returns a new SWFTextField object */ + 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