diff options
author | Antony Dovgal <tony2001@php.net> | 2006-05-17 14:28:21 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-05-17 14:28:21 +0000 |
commit | 6783be767aae3d965163e1cf9cac4aae9bdd6082 (patch) | |
tree | bad8f3443b9e230961c7512079cbd1f2aa54ac0b /Zend/zend_object_handlers.h | |
parent | 4fd736fbe901cfbe816b74a1ef1fea0d545875b5 (diff) | |
download | php-git-6783be767aae3d965163e1cf9cac4aae9bdd6082.tar.gz |
change argument name, it should be "object" not "property"
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r-- | Zend/zend_object_handlers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h index 85b7e85ab0..5ffb1298f4 100644 --- a/Zend/zend_object_handlers.h +++ b/Zend/zend_object_handlers.h @@ -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: |