summaryrefslogtreecommitdiff
path: root/php/src/IcePHP/Properties.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-07-09 19:50:27 +0200
committerJose <jose@zeroc.com>2013-07-09 19:50:27 +0200
commit6c9af35fb4001a337f794b905de363da70117c00 (patch)
tree10a73d77aa59f4c2c1cddef121243363986a9aa9 /php/src/IcePHP/Properties.cpp
parentICE-5338 - null reference error in metrics (diff)
downloadice-6c9af35fb4001a337f794b905de363da70117c00.tar.bz2
ice-6c9af35fb4001a337f794b905de363da70117c00.tar.xz
ice-6c9af35fb4001a337f794b905de363da70117c00.zip
Fixed ICE-5376 - IcePHP build with USE_NAMESPACES=yes broken
Diffstat (limited to 'php/src/IcePHP/Properties.cpp')
-rw-r--r--php/src/IcePHP/Properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/IcePHP/Properties.cpp b/php/src/IcePHP/Properties.cpp
index 639f59ca47d..80075a5d3f4 100644
--- a/php/src/IcePHP/Properties.cpp
+++ b/php/src/IcePHP/Properties.cpp
@@ -641,7 +641,7 @@ IcePHP::propertiesInit(TSRMLS_D)
//
zend_class_entry ce;
#ifdef ICEPHP_USE_NAMESPACES
- INIT_NS_CLASS_ENTRY(ce, STRCAST("Ice"), STRCAST("Properties"), _interfaceMethods);
+ INIT_NS_CLASS_ENTRY(ce, "Ice", "Properties", _interfaceMethods);
#else
INIT_CLASS_ENTRY(ce, "Ice_Properties", _interfaceMethods);
#endif