summaryrefslogtreecommitdiff
path: root/ext/ming/ming.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ming/ming.c')
-rw-r--r--ext/ming/ming.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/ext/ming/ming.c b/ext/ming/ming.c
index 6d9d053a8..12ef5d066 100644
--- a/ext/ming/ming.c
+++ b/ext/ming/ming.c
@@ -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 @@ static SWFInput getInput(zval **zfile TSRMLS_DC)
/* {{{ 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 @@ static zend_function_entry swfaction_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfbitmap_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfdisplayitem_functions[] = {
/* {{{ 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 @@ static SWFFont getFont(zval *id TSRMLS_DC)
}
/* }}} */
-/* {{{ 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 @@ static zend_function_entry swffont_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfgradient_functions[] = {
/* {{{ 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 @@ SWFSound getSound(zval *id TSRMLS_DC)
}
/* }}} */
-/* {{{ 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 @@ static zend_function_entry swfprebuiltclip_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfmovie_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfshape_functions[] = {
/* {{{ 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 @@ static zend_function_entry swfsprite_functions[] = {
/* {{{ 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 @@ static zend_function_entry swftext_functions[] = {
/* {{{ 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;