From 96a1da00d29b2367643c82f75be7cdc1dad3e2a0 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 29 Sep 2021 18:13:53 -0700 Subject: [PATCH] QEventLoop: remove unnecessary bits of Qt 5 suggestion Pick-to: 6.2 Change-Id: I2bbf422288924c198645fffd16a974803ab43b7f Reviewed-by: Lars Knoll --- src/corelib/kernel/qeventloop.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/corelib/kernel/qeventloop.cpp b/src/corelib/kernel/qeventloop.cpp index 8aa5a219fa..4e4fa11b30 100644 --- a/src/corelib/kernel/qeventloop.cpp +++ b/src/corelib/kernel/qeventloop.cpp @@ -195,9 +195,7 @@ int QEventLoop::exec(ProcessEventsFlags flags) if (exceptionCaught) { qWarning("Qt has caught an exception thrown from an event handler. Throwing\n" "exceptions from an event handler is not supported in Qt.\n" - "You must not let any exception whatsoever propagate through Qt code.\n" - "If that is not possible, in Qt 5 you must at least reimplement\n" - "QCoreApplication::notify() and catch all exceptions there.\n"); + "You must not let any exception whatsoever propagate through Qt code."); } locker.relock(); auto threadData = d->threadData.loadRelaxed();