Changeset 131 in dev for BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- Jun 4, 2007, 7:49:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/VariableOpe.cpp
r128 r131 210 210 if(lpIndex==0) lstrcpy(name,"non"); 211 211 else{ 212 lstrcpy(name,((CClass *)lpIndex)-> name);212 lstrcpy(name,((CClass *)lpIndex)->GetName().c_str()); 213 213 } 214 214 } … … 751 751 //自身のクラスから静的メンバを参照する場合 752 752 char temp2[VN_SIZE]; 753 sprintf(temp2,"%s.%s",pobj_CompilingClass-> name,VarName);753 sprintf(temp2,"%s.%s",pobj_CompilingClass->GetName().c_str(),VarName); 754 754 755 755 pVar = globalVars.Find( temp2 ); … … 1009 1009 //クラス名 1010 1010 if(pobj_CompilingClass){ 1011 lstrcat(FullName,pobj_CompilingClass-> name);1011 lstrcat(FullName,pobj_CompilingClass->GetName().c_str()); 1012 1012 lstrcat(FullName,"%"); 1013 1013 }
Note:
See TracChangeset
for help on using the changeset viewer.