summaryrefslogtreecommitdiff
path: root/ext/ming
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-03-06 10:06:03 +0000
committerMarcus Boerger <helly@php.net>2006-03-06 10:06:03 +0000
commit3fd4b151f2022dcd1839f081fc9091336331f70e (patch)
treea07b5fe68229e6aad61b751cc22ffef4ae34935d /ext/ming
parent18f1439b32dc2693b11dd4678a73d654d605a5fc (diff)
downloadphp-git-3fd4b151f2022dcd1839f081fc9091336331f70e.tar.gz
- Proto fixes
Diffstat (limited to 'ext/ming')
-rw-r--r--ext/ming/ming.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/ming/ming.c b/ext/ming/ming.c
index 25bdf4e8d0..4e3f440aa9 100644
--- a/ext/ming/ming.c
+++ b/ext/ming/ming.c
@@ -297,7 +297,7 @@ static SWFInput getInput(zval **zfile TSRMLS_DC)
/* {{{ 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 @@ static zend_function_entry swfaction_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfbitmap_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfdisplayitem_functions[] = {
/* {{{ 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 @@ static SWFFont getFont(zval *id TSRMLS_DC)
/* }}} */
/* {{{ 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 @@ static zend_function_entry swffont_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfgradient_functions[] = {
/* {{{ 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 @@ SWFSound getSound(zval *id TSRMLS_DC)
/* }}} */
/* {{{ 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 @@ static zend_function_entry swfmovie_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfshape_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfsprite_functions[] = {
/* {{{ SWFText
*/
/* {{{ proto void swftext::__construct()
- Returns new SWFText object */
+ Creates new SWFText object */
PHP_METHOD(swftext, __construct)
{
SWFText text = newSWFText2();
@@ -3686,7 +3686,7 @@ static zend_function_entry swftext_functions[] = {
/* {{{ SWFTextField
*/
/* {{{ proto void swftextfield::__construct([int flags])
- Returns a new SWFTextField object */
+ Creates a new SWFTextField object */
PHP_METHOD(swftextfield, __construct)
{
zval **flags;