Changeset 131 in dev for BasicCompiler_Common/Object.cpp


Ignore:
Timestamp:
Jun 4, 2007, 7:49:17 AM (17 years ago)
Author:
dai_9181
Message:

Prototypeクラスを用意した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Object.cpp

    r89 r131  
    2020
    2121    UserProc *pUserProc;
    22     pUserProc=GetMethodHash(ObjectName,type.GetClass().name,Parameter);
     22    pUserProc=GetMethodHash(ObjectName,type.GetClass().GetName().c_str(),Parameter);
    2323    if(!pUserProc){
    24         if(Parameter[0]) SetError(113,type.GetClass().name,cp);
     24        if(Parameter[0]) SetError(113,type.GetClass().GetName().c_str(),cp);
    2525        return;
    2626    }
     
    5353
    5454            Type dummyType;
    55             sprintf(temporary+lstrlen(temporary),".%s",type.GetClass().name);
     55            sprintf(temporary+lstrlen(temporary),".%s",type.GetClass().GetName().c_str());
    5656            CallProc( PROC_DEFAULT,
    5757                pUserProc,
     
    6969    else{
    7070        Type dummyType;
    71         sprintf(temporary,"%s.%s",ObjectName,type.GetClass().name);
     71        sprintf(temporary,"%s.%s",ObjectName,type.GetClass().GetName().c_str());
    7272        CallProc( PROC_DEFAULT,
    7373            pUserProc,
Note: See TracChangeset for help on using the changeset viewer.