Changeset 345 in dev for trunk/abdev/BasicCompiler64/OperatorProc.cpp
- Timestamp:
- Oct 10, 2007, 1:52:43 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/OperatorProc.cpp
r339 r345 39 39 40 40 std::vector<const UserProc *> subs; 41 pobj_c->Get Methods().Enum( idCalc, subs );41 pobj_c->GetDynamicMethods().Enum( idCalc, subs ); 42 42 if( subs.size() == 0 ){ 43 43 return 0; … … 324 324 325 325 std::vector<const UserProc *> subs; 326 classType.GetClass().Get Methods().Enum( CALC_ARRAY_GET, subs );326 classType.GetClass().GetDynamicMethods().Enum( CALC_ARRAY_GET, subs ); 327 327 if( subs.size() == 0 ){ 328 328 return;
Note:
See TracChangeset
for help on using the changeset viewer.