summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ObjectFactory.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-09-14 13:53:04 +0000
committerMark Spruiell <mes@zeroc.com>2004-09-14 13:53:04 +0000
commitd62f51d71ff7a4b9fd09ecb90dd669fb310575f9 (patch)
tree3801d18e763400729a34b601fd19555eb262507a /py/modules/IcePy/ObjectFactory.cpp
parentnew scheme for type definitions; adding AMD support; fixed locking issues (diff)
downloadice-d62f51d71ff7a4b9fd09ecb90dd669fb310575f9.tar.bz2
ice-d62f51d71ff7a4b9fd09ecb90dd669fb310575f9.tar.xz
ice-d62f51d71ff7a4b9fd09ecb90dd669fb310575f9.zip
new scheme for type definitions
Diffstat (limited to 'py/modules/IcePy/ObjectFactory.cpp')
-rw-r--r--py/modules/IcePy/ObjectFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/ObjectFactory.cpp b/py/modules/IcePy/ObjectFactory.cpp
index 80671824c20..1023ec70399 100644
--- a/py/modules/IcePy/ObjectFactory.cpp
+++ b/py/modules/IcePy/ObjectFactory.cpp
@@ -32,7 +32,7 @@ IcePy::ObjectFactory::create(const string& id)
//
// Get the type information.
//
- ClassInfoPtr info = ClassInfoPtr::dynamicCast(getTypeInfo(id));
+ ClassInfoPtr info = lookupClassInfo(id);
if(!info)
{
return 0;