Wizard: Add explanation text when server error is shown #6157

Just showing a box with the message can be surprising.
This commit is contained in:
Christian Kamm 2017-11-14 14:02:20 +01:00
Родитель 9a1ea67a35
Коммит 06ce8dd8bd
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -294,7 +294,8 @@ void OwncloudSetupWizard::slotNoServerFound(QNetworkReply *reply)
QString serverError = reply->peek(1024 * 20);
qCDebug(lcWizard) << serverError;
QMessageBox messageBox(_ocWizard);
messageBox.setText(serverError);
messageBox.setText(tr("The server reported the following error:"));
messageBox.setInformativeText(serverError);
messageBox.addButton(QMessageBox::Ok);
messageBox.setTextFormat(Qt::RichText);
messageBox.exec();