Changeset 342 in dev for trunk/abdev/BasicCompiler32/OperatorProc.cpp
- Timestamp:
- Oct 9, 2007, 1:10:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/OperatorProc.cpp
r334 r342 34 34 35 35 std::vector<const UserProc *> subs; 36 pobj_c->Get Methods().Enum( idCalc, subs );36 pobj_c->GetDynamicMethods().Enum( idCalc, subs ); 37 37 if( subs.size() == 0 ){ 38 38 return 0; … … 254 254 void CallIndexerGetterProc( const Type &classType, const char *ObjectName, char *Parameter,Type &resultType, DWORD dwProcFlags ){ 255 255 std::vector<const UserProc *> subs; 256 classType.GetClass().Get Methods().Enum( CALC_ARRAY_GET, subs );256 classType.GetClass().GetDynamicMethods().Enum( CALC_ARRAY_GET, subs ); 257 257 if( subs.size() == 0 ){ 258 258 return;
Note:
See TracChangeset
for help on using the changeset viewer.