Changeset 97 in dev for BasicCompiler32/Compile_CallProc.cpp
- Timestamp:
- Apr 16, 2007, 3:52:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_CallProc.cpp
r77 r97 116 116 if( pUserProc->GetParentClassPtr() ){ 117 117 //クラスのメンバ関数を呼び出す場合はアクセスチェックを行う 118 if(ObjectName[0] ){118 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){ 119 119 if(lstrcmpi(ObjectName,"Super")==0){ 120 120 //クラスメンバ関数内から基底クラスの呼び出し … … 272 272 ////////////////////////////////////////////////////// 273 273 274 if(ObjectName[0] ){274 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){ 275 275 if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember; 276 276 else{
Note:
See TracChangeset
for help on using the changeset viewer.