Ignore:
Timestamp:
Jun 6, 2007, 12:58:40 AM (17 years ago)
Author:
dai_9181
Message:

Method/Memberのリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler32/Compile_Object.cpp

    r131 r135  
    3636
    3737    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 );
    3939
    4040    UserProc *pUserProc;
     
    5656        // obj._System_SetType( _System_TypeBase.Search( strNamespace, name ) )
    5757        subs.clear();
    58         pobj_c->EnumMethod( "_System_SetType", subs );
     58        pobj_c->GetMethods().Enum( "_System_SetType", subs );
    5959        if( subs.size() == 1 ){
    6060            char temporary[VN_SIZE];
     
    208208
    209209
    210     CMethod *method = classObj.GetDestructorMethod();
     210    const CMethod *method = classObj.GetDestructorMethod();
    211211    if( method == NULL ) return;
    212212
Note: See TracChangeset for help on using the changeset viewer.