Ignore:
Timestamp:
May 16, 2014, 9:51:55 AM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to latest 0.8.7

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/inforeader.cpp

    r142 r165  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    7272
    7373void InfoReader::getInfo() {
    74         waiting_for_key = TRUE;
     74        waiting_for_key = true;
    7575        vo_list.clear();
    7676        ao_list.clear();
     
    195195        if ( rx_vo_key.indexIn(line) > -1 ) {
    196196                reading_type = VO;
    197                 waiting_for_key = FALSE;
     197                waiting_for_key = false;
    198198                qDebug("InfoReader::readLine: found key: vo");
    199199        }
     
    201201        if ( rx_ao_key.indexIn(line) > -1 ) {
    202202                reading_type = AO;
    203                 waiting_for_key = FALSE;
     203                waiting_for_key = false;
    204204                qDebug("InfoReader::readLine: found key: ao");
    205205        }
     
    207207        if ( rx_demuxer_key.indexIn(line) > -1 ) {
    208208                reading_type = DEMUXER;
    209                 waiting_for_key = FALSE;
     209                waiting_for_key = false;
    210210                qDebug("InfoReader::readLine: found key: demuxer");
    211211        }
     
    213213        if ( rx_ac_key.indexIn(line) > -1 ) {
    214214                reading_type = AC;
    215                 waiting_for_key = FALSE;
     215                waiting_for_key = false;
    216216                qDebug("InfoReader::readLine: found key: ac");
    217217        }
     
    219219        if ( rx_vc_key.indexIn(line) > -1 ) {
    220220                reading_type = VC;
    221                 waiting_for_key = FALSE;
     221                waiting_for_key = false;
    222222                qDebug("InfoReader::readLines: found key: vc");
    223223        }
Note: See TracChangeset for help on using the changeset viewer.