From: gregor herrmann Date: Sun, 22 Jan 2017 16:41:03 +0000 (+0100) Subject: Fix typo in error message. X-Git-Tag: 0.6.2~8 X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/commitdiff_plain/3ba7b3e9da362bc4d69e22ca448d71b83817bf31 Fix typo in error message. --- diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index de311f9..bcfd3ec 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -410,7 +410,7 @@ void MainWindow::on_conferencesAction_triggered() void MainWindow::networkQueryFinished(QNetworkReply *aReply) { if (aReply->error() != QNetworkReply::NoError) { - error_message(QString("Error occured during download: ") + aReply->errorString()); + error_message(QString("Error occurred during download: ") + aReply->errorString()); } else { QUrl redirectUrl = aReply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (!redirectUrl.isEmpty()) {