diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-06-25 22:52:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-25 22:52:22 +0200 |
| commit | a82b5de34adf50e46e3b1c80e9301b9d364fdb56 (patch) | |
| tree | 0311d2ea46ac60218f340923673b176fc0bbc635 /src/moapplication.cpp | |
| parent | d683ee652c9bf15cb319c5783479917c2c6b7bd0 (diff) | |
| parent | 724fad7cb62a0ee4913ed41bde45c7564183c7af (diff) | |
Merge pull request #772 from Nubbie/Develop
Correcting minor spelling mistakes in the UI + add contributor
Diffstat (limited to 'src/moapplication.cpp')
| -rw-r--r-- | src/moapplication.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/moapplication.cpp b/src/moapplication.cpp index 3a791827..5652833a 100644 --- a/src/moapplication.cpp +++ b/src/moapplication.cpp @@ -116,12 +116,12 @@ bool MOApplication::notify(QObject *receiver, QEvent *event) } catch (const std::exception &e) {
qCritical("uncaught exception in handler (object %s, eventtype %d): %s",
receiver->objectName().toUtf8().constData(), event->type(), e.what());
- reportError(tr("an error occured: %1").arg(e.what()));
+ reportError(tr("an error occurred: %1").arg(e.what()));
return false;
} catch (...) {
qCritical("uncaught non-std exception in handler (object %s, eventtype %d)",
receiver->objectName().toUtf8().constData(), event->type());
- reportError(tr("an error occured"));
+ reportError(tr("an error occurred"));
return false;
}
}
|
