]> granicus.if.org Git - php/commitdiff
change argument name, it should be "object" not "property"
authorAntony Dovgal <tony2001@php.net>
Wed, 17 May 2006 14:28:21 +0000 (14:28 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 17 May 2006 14:28:21 +0000 (14:28 +0000)
Zend/zend_object_handlers.h

index 85b7e85ab00c7bf4f45ec849073ccf1485b871a0..5ffb1298f44cd5fcc77eb5c2b02db15ee76ec006 100644 (file)
@@ -53,12 +53,12 @@ typedef zval **(*zend_object_get_property_ptr_ptr_t)(zval *object, zval *member
 
 /* Used to set object value. Can be used to override assignments and scalar
    write ops (like ++, +=) on the object */
-typedef void (*zend_object_set_t)(zval **property, zval *value TSRMLS_DC);
+typedef void (*zend_object_set_t)(zval **object, zval *value TSRMLS_DC);
 
 /* Used to get object value. Can be used when converting object value to
  * one of the basic types and when using scalar ops (like ++, +=) on the object
  */
-typedef zval* (*zend_object_get_t)(zval *property TSRMLS_DC);
+typedef zval* (*zend_object_get_t)(zval *object TSRMLS_DC);
 
 /* Used to check if a property of the object exists */
 /* param has_set_exists: