Ignore:
Timestamp:
Jun 15, 2008, 11:59:46 PM (16 years ago)
Author:
dai_9181
Message:

・デバッグトレース時、グローバル領域の終端行でステップインまたはステップアウトしたときにデバッグ情報の取得に失敗して強制終了してしまう不具合を修正。
・グローバル領域のデバッグ実行ができなくなっている不具合を修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ab_common/src/Lexical/NativeCode.cpp

    r640 r641  
    161161}
    162162
    163 void NativeCode::NextSourceLine( const SourceCodePosition &sourceCodePosition )
     163void NativeCode::NextSourceLine( const SourceCodePosition &sourceCodePosition, bool isInSystemProc )
    164164{
    165165    if( sourceLines.size() )
     
    173173
    174174    extern BOOL bDebugSupportProc;
    175     extern BOOL bSystemProc;
    176175    DWORD sourceLineType = 0;
    177176    if( bDebugSupportProc )
     
    179178        sourceLineType |= CODETYPE_DEBUGPROC;
    180179    }
    181     if( bSystemProc )
     180    if( isInSystemProc )
    182181    {
    183182        sourceLineType |= CODETYPE_SYSTEMPROC;
Note: See TracChangeset for help on using the changeset viewer.