]> granicus.if.org Git - php/commitdiff
- Proto fixes
authorMarcus Boerger <helly@php.net>
Mon, 6 Mar 2006 10:06:03 +0000 (10:06 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 6 Mar 2006 10:06:03 +0000 (10:06 +0000)
ext/ming/ming.c

index 25bdf4e8d0995768d7eaebf1c237dc16bfb71cf7..4e3f440aa9e3ce4e454cdd032e804c3a1aeef799 100644 (file)
@@ -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;