Changeset 135 in dev for BasicCompiler32/Compile_Object.cpp
- Timestamp:
- Jun 6, 2007, 12:58:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Object.cpp
r131 r135 36 36 37 37 std::vector<UserProc *> subs; 38 pobj_c-> EnumMethod( pobj_c->GetName().c_str(), subs );38 pobj_c->GetMethods().Enum( pobj_c->GetName().c_str(), subs ); 39 39 40 40 UserProc *pUserProc; … … 56 56 // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) ) 57 57 subs.clear(); 58 pobj_c-> EnumMethod( "_System_SetType", subs );58 pobj_c->GetMethods().Enum( "_System_SetType", subs ); 59 59 if( subs.size() == 1 ){ 60 60 char temporary[VN_SIZE]; … … 208 208 209 209 210 CMethod *method = classObj.GetDestructorMethod();210 const CMethod *method = classObj.GetDestructorMethod(); 211 211 if( method == NULL ) return; 212 212
Note:
See TracChangeset
for help on using the changeset viewer.