Changeset 29 in svn for trunk/zasc/app_c/DST_WinDebugSQL.c


Ignore:
Timestamp:
Sep 3, 2015 10:17:59 AM (10 years ago)
Author:
phkim
Message:
  1. phkim
  2. app
  3. 변경 내용
    • 채널 편집 기능 활성화
    • 프로그램ID, RF 기능을 Major, Minor 로 변경
    • Skip_list 저장 위치를 TVCT_SUB 아래로 변경
    • define 이름 변경 -> SUPPORT_CHANNEL_EDIT
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/zasc/app_c/DST_WinDebugSQL.c

    r2 r29  
    609609                                break;   
    610610#endif 
    611 #if CHANNEL_EDIT_SUPPORT                         
     611#if SUPPORT_CHANNEL_EDIT 
    612612                        case NO_SKIP_LIST: 
    613613                                CDebugSQLSubWin_RowItemNum = 0; 
    614614                                for(i = 0; i< DB_SKIP_LIST_MAX ; i++) 
    615615                                { 
    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; 
    617617                                        CDebugSQLSubWin_RowItemNum++; 
    618618                                } 
     
    621621                                CDebugSQLSubWin_attributes = (ATTRIBUTES *)DST_OS_Calloc(sizeof(ATTRIBUTES), CDebugSQLSubWin_ColItemNum);                        
    622622 
    623                                 CDebugSQLSubWin_attributes[0].name = (char *)"rf"; 
     623                                CDebugSQLSubWin_attributes[0].name = (char *)"Minor"; 
    624624                                CDebugSQLSubWin_attributes[0].type = 1; 
    625                                 CDebugSQLSubWin_attributes[1].name = (char *)"program_number"; 
     625                                CDebugSQLSubWin_attributes[1].name = (char *)"Major"; 
    626626                                CDebugSQLSubWin_attributes[1].type = 1; 
    627627 
     
    635635                                                switch(j) 
    636636                                                { 
    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; 
    639639                                                        default: break; 
    640640                                                                 
Note: See TracChangeset for help on using the changeset viewer.