QTfrontend/ui/widget/feedbackdialog.cpp
changeset 9393 094a176dd623
parent 9335 f1ac1aa3f88d
child 9652 b787bf466bdb
equal deleted inserted replaced
9391:2af25494f3bb 9393:094a176dd623
   427         genCaptchaRequest = netManager->get(req);
   427         genCaptchaRequest = netManager->get(req);
   428 }
   428 }
   429 
   429 
   430 void FeedbackDialog::finishedSlot(QNetworkReply* reply)
   430 void FeedbackDialog::finishedSlot(QNetworkReply* reply)
   431 {
   431 {
   432     if (reply && reply->error() == QNetworkReply::NoError)
   432     if (reply->error() == QNetworkReply::NoError)
   433     {
   433     {
   434             QMessageBox infoMsg(this);
   434             QMessageBox infoMsg(this);
   435             infoMsg.setIcon(QMessageBox::Information);
   435             infoMsg.setIcon(QMessageBox::Information);
   436             infoMsg.setWindowTitle(QMessageBox::tr("Hedgewars - Success"));
   436             infoMsg.setWindowTitle(QMessageBox::tr("Hedgewars - Success"));
   437             infoMsg.setText(reply->readAll());
   437             infoMsg.setText(reply->readAll());