Fix typo in error message.
authorgregor herrmann <gregoa@debian.org>
Sun, 22 Jan 2017 16:41:03 +0000 (17:41 +0100)
committergregor herrmann <gregoa@debian.org>
Sun, 22 Jan 2017 16:41:03 +0000 (17:41 +0100)
src/gui/mainwindow.cpp

index de311f970a852f60488dedda46a16a9cd0752e30..bcfd3ec9522b4ed95501ca462b442f9baa0a1511 100644 (file)
@@ -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()) {