Changeset 60 in svn for trunk/zasc/app_c/DST_WinDebugSQL.c
- Timestamp:
- Oct 21, 2015 1:32:10 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/zasc/app_c/DST_WinDebugSQL.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/zasc/app_c/DST_WinDebugSQL.c
r2 r60 609 609 break; 610 610 #endif 611 #if CHANNEL_EDIT_SUPPORT611 #if SUPPORT_CHANNEL_EDIT 612 612 case NO_SKIP_LIST: 613 613 CDebugSQLSubWin_RowItemNum = 0; 614 614 for(i = 0; i< DB_SKIP_LIST_MAX ; i++) 615 615 { 616 if(db_skip_list[i]. rf == 0 && db_skip_list[i].program_number == 0 ) continue;616 if(db_skip_list[i].minor == 0 && db_skip_list[i].major == 0 ) continue; 617 617 CDebugSQLSubWin_RowItemNum++; 618 618 } … … 621 621 CDebugSQLSubWin_attributes = (ATTRIBUTES *)DST_OS_Calloc(sizeof(ATTRIBUTES), CDebugSQLSubWin_ColItemNum); 622 622 623 CDebugSQLSubWin_attributes[0].name = (char *)" rf";623 CDebugSQLSubWin_attributes[0].name = (char *)"Minor"; 624 624 CDebugSQLSubWin_attributes[0].type = 1; 625 CDebugSQLSubWin_attributes[1].name = (char *)" program_number";625 CDebugSQLSubWin_attributes[1].name = (char *)"Major"; 626 626 CDebugSQLSubWin_attributes[1].type = 1; 627 627 … … 635 635 switch(j) 636 636 { 637 case 0: sprintf(tmp_str,"%d",db_skip_list[i]. rf); break;638 case 1: sprintf(tmp_str,"%d",db_skip_list[i]. program_number); break;637 case 0: sprintf(tmp_str,"%d",db_skip_list[i].minor); break; 638 case 1: sprintf(tmp_str,"%d",db_skip_list[i].major); break; 639 639 default: break; 640 640
Note: See TracChangeset
for help on using the changeset viewer.
