Changeset 352 in dev for trunk/abdev/BasicCompiler_Common/src/Method.cpp
- Timestamp:
- Oct 19, 2007, 2:51:36 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Method.cpp
r351 r352 109 109 const Methods &methods = *this; 110 110 for( int i=(int)methods.size()-1; i>=0; i-- ){ 111 if( methods[i]->GetUserProc().GetName() == methodName ){111 if( methods[i]->GetUserProc().GetName() == methodName && methods[i]->IsNotUse() == false ){ 112 112 subs.push_back( &methods[i]->GetUserProc() ); 113 113 }
Note:
See TracChangeset
for help on using the changeset viewer.