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


Ignore:
Timestamp:
Oct 21, 2015 1:32:10 PM (10 years ago)
Author:
phkim
Message:
  1. phkim
  2. 금강방송
  3. 변경 내용
    • 서경방송 채널 편집 기능 병합
    • 채널 편집 기능 추가, 기존 검색 방법 변경 (RF,Program number ) -> (major, minor)
    • 채널편집 항목중 추가 -> 시청 으로 문구 변경, 가이드 문구 색상 변경
    • 사용장 키 입력 후 플래시 저장 속도 1초 -> 5초 로 변경
    • UI 동작에 대한 시나리오 통일



File:
1 edited

Legend:

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

    r2 r60  
    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.