summaryrefslogtreecommitdiff
path: root/src/inforeader.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2014-04-21 11:53:35 +0200
committerMateusz Łukasik <mati75@linuxmint.pl>2014-04-21 11:53:35 +0200
commit2a117cc570574099839da41a5ae9fbb2a5ca9e55 (patch)
tree6107da409f9c7f07c0ffa0869a26a161b097aea7 /src/inforeader.cpp
parentaa68b7bd585a157e8952881e87e2c09de6ec742f (diff)
Imported Upstream version 14.3.0
Diffstat (limited to 'src/inforeader.cpp')
-rw-r--r--src/inforeader.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/inforeader.cpp b/src/inforeader.cpp
index f1e1b84..4e45a8a 100644
--- a/src/inforeader.cpp
+++ b/src/inforeader.cpp
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
+ Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -71,7 +71,7 @@ InfoReader::~InfoReader() {
}
void InfoReader::getInfo() {
- waiting_for_key = TRUE;
+ waiting_for_key = true;
vo_list.clear();
ao_list.clear();
demuxer_list.clear();
@@ -194,31 +194,31 @@ void InfoReader::readLine(QByteArray ba) {
if ( rx_vo_key.indexIn(line) > -1 ) {
reading_type = VO;
- waiting_for_key = FALSE;
+ waiting_for_key = false;
qDebug("InfoReader::readLine: found key: vo");
}
if ( rx_ao_key.indexIn(line) > -1 ) {
reading_type = AO;
- waiting_for_key = FALSE;
+ waiting_for_key = false;
qDebug("InfoReader::readLine: found key: ao");
}
if ( rx_demuxer_key.indexIn(line) > -1 ) {
reading_type = DEMUXER;
- waiting_for_key = FALSE;
+ waiting_for_key = false;
qDebug("InfoReader::readLine: found key: demuxer");
}
if ( rx_ac_key.indexIn(line) > -1 ) {
reading_type = AC;
- waiting_for_key = FALSE;
+ waiting_for_key = false;
qDebug("InfoReader::readLine: found key: ac");
}
if ( rx_vc_key.indexIn(line) > -1 ) {
reading_type = VC;
- waiting_for_key = FALSE;
+ waiting_for_key = false;
qDebug("InfoReader::readLines: found key: vc");
}