Fix 2 more tr()-contexts of messages in QPlaylistFileParserPrivate.

Use QPlaylistFileParser instead of QObject.

Change-Id: I5dd4b56f7f580ca4089db67bbfabdd58ef7e2778
Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
This commit is contained in:
Friedemann Kleint
2015-08-19 16:10:21 +02:00
committed by Yoann Lopes
parent aad6e64352
commit 31fce88b3f

View File

@@ -351,7 +351,7 @@ void QPlaylistFileParserPrivate::_q_handleData()
if (m_buffer.length() - processedBytes >= LINE_LIMIT) { if (m_buffer.length() - processedBytes >= LINE_LIMIT) {
qWarning() << "error parsing playlist["<< m_root << "] with line content >= 4096 bytes."; qWarning() << "error parsing playlist["<< m_root << "] with line content >= 4096 bytes.";
emit q->error(QPlaylistFileParser::FormatError, QObject::tr("invalid line in playlist file")); emit q->error(QPlaylistFileParser::FormatError, QPlaylistFileParser::tr("invalid line in playlist file"));
q->stop(); q->stop();
return; return;
} }
@@ -399,7 +399,7 @@ void QPlaylistFileParserPrivate::_q_handleParserFinished()
Q_Q(QPlaylistFileParser); Q_Q(QPlaylistFileParser);
bool isParserValid = (m_currentParser != 0); bool isParserValid = (m_currentParser != 0);
if (!isParserValid) if (!isParserValid)
emit q->error(QPlaylistFileParser::FormatNotSupportedError, QObject::tr("Empty file provided")); emit q->error(QPlaylistFileParser::FormatNotSupportedError, QPlaylistFileParser::tr("Empty file provided"));
q->stop(); q->stop();