Release 2.2.2

* update screenshots
+ add error logging to extquotes
- fix paragraph bug
- fix bug with DP settings
This commit is contained in:
arcan1s
2015-05-22 00:18:14 +03:00
parent 78931b3ae0
commit 8c73b2560b
35 changed files with 3931 additions and 9184 deletions

View File

@ -312,7 +312,14 @@ void ExtQuotes::writeConfiguration()
void ExtQuotes::quotesReplyReceived(QNetworkReply *reply)
{
if (debug) qDebug() << PDEBUG << reply->url();
if (debug) qDebug() << PDEBUG;
if (debug) qDebug() << PDEBUG << ":" << "Return code" << reply->error();
if (debug) qDebug() << PDEBUG << ":" << "Error message" << reply->errorString();
if (reply->error() != QNetworkReply::NoError) {
reply->deleteLater();
return;
}
QDomDocument doc;
if (!doc.setContent(reply)) {