diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-09-14 13:53:04 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-09-14 13:53:04 +0000 |
commit | d62f51d71ff7a4b9fd09ecb90dd669fb310575f9 (patch) | |
tree | 3801d18e763400729a34b601fd19555eb262507a /py/modules/IcePy/ObjectFactory.cpp | |
parent | new scheme for type definitions; adding AMD support; fixed locking issues (diff) | |
download | ice-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.cpp | 2 |
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; |