Changeset 641 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/NativeCode.cpp
- Timestamp:
- Jun 15, 2008, 11:59:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/NativeCode.cpp
r640 r641 161 161 } 162 162 163 void NativeCode::NextSourceLine( const SourceCodePosition &sourceCodePosition )163 void NativeCode::NextSourceLine( const SourceCodePosition &sourceCodePosition, bool isInSystemProc ) 164 164 { 165 165 if( sourceLines.size() ) … … 173 173 174 174 extern BOOL bDebugSupportProc; 175 extern BOOL bSystemProc;176 175 DWORD sourceLineType = 0; 177 176 if( bDebugSupportProc ) … … 179 178 sourceLineType |= CODETYPE_DEBUGPROC; 180 179 } 181 if( bSystemProc )180 if( isInSystemProc ) 182 181 { 183 182 sourceLineType |= CODETYPE_SYSTEMPROC;
Note:
See TracChangeset
for help on using the changeset viewer.