Ignore:
Timestamp:
Aug 28, 2007, 3:45:06 AM (17 years ago)
Author:
dai_9181
Message:

Protectedメソッドを派生クラス内のメソッドでSuperと指定するとエラーになるバグを修正。
クラスメソッド内でImportsされた名前空間内の情報が扱えないバグを修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/Compile_CallProc.cpp

    r304 r306  
    190190                    return false;
    191191                }
    192                 if( pMethod->IsProtected() ){
     192                if( !pMethod->GetUserProc().GetParentClass().IsEqualsOrSubClass( pobj_c ) && pMethod->IsProtected() ){
    193193                    SetError(110,pUserProc->GetName(),cp);
    194194                    return false;
Note: See TracChangeset for help on using the changeset viewer.