summaryrefslogtreecommitdiff
path: root/src/inforeadermpv.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2015-04-26 20:41:29 +0200
committerMateusz Łukasik <mati75@linuxmint.pl>2015-04-26 20:41:29 +0200
commit6027a8ff2d6ae4eba912427c30c58208009c1ebc (patch)
tree756eddd2fc9e7a9943b43e6ff3f9e92cbd4c3352 /src/inforeadermpv.cpp
parent45ee5ac6dc2159352596ce8e8ec744e0c864d492 (diff)
Imported Upstream version 14.9.0.6887~ds0
Diffstat (limited to 'src/inforeadermpv.cpp')
-rw-r--r--src/inforeadermpv.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inforeadermpv.cpp b/src/inforeadermpv.cpp
index e914661..1ae80a1 100644
--- a/src/inforeadermpv.cpp
+++ b/src/inforeadermpv.cpp
@@ -139,7 +139,7 @@ InfoList InfoReaderMPV::getList(const QList<QByteArray> & lines) {
InfoList l;
foreach(QByteArray line, lines) {
- qDebug() << "InfoReaderMPV::getList: line:" << line;
+ //qDebug() << "InfoReaderMPV::getList: line:" << line;
line.replace("\n", "");
line = line.simplified();
@@ -155,7 +155,7 @@ InfoList InfoReaderMPV::getList(const QList<QByteArray> & lines) {
if (name.endsWith(':')) name = name.left(name.count()-1);
QString desc = line.mid(pos+1);
desc = desc.replace(": ", "").replace("- ", "");
- qDebug() << "InfoReaderMPV::getList: name:" << name << "desc:" << desc;
+ //qDebug() << "InfoReaderMPV::getList: name:" << name << "desc:" << desc;
l.append(InfoData(name, desc));
}
}
@@ -168,14 +168,14 @@ QStringList InfoReaderMPV::getOptionsList(const QList<QByteArray> & lines) {
QStringList l;
foreach(QByteArray line, lines) {
- qDebug() << "InfoReaderMPV::getOptionsList: line:" << line;
+ //qDebug() << "InfoReaderMPV::getOptionsList: line:" << line;
line.replace("\n", "");
line = line.simplified();
if (line.startsWith("--")) {
int pos = line.indexOf(' ');
if (pos > -1) {
QString option_name = line.left(pos);
- qDebug() << "InfoReaderMPV::getOptionsList: option:" << option_name;
+ //qDebug() << "InfoReaderMPV::getOptionsList: option:" << option_name;
l << option_name;
}
}