mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Remove useless exception handling
This commit is contained in:
@@ -615,19 +615,6 @@ bool Application::event(QEvent *ev)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif // Q_OS_MAC
|
#endif // Q_OS_MAC
|
||||||
|
|
||||||
bool Application::notify(QObject *receiver, QEvent *event)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
return QApplication::notify(receiver, event);
|
|
||||||
}
|
|
||||||
catch (const std::exception &e) {
|
|
||||||
qCritical() << "Exception thrown:" << e.what() << ", receiver: " << receiver->objectName();
|
|
||||||
receiver->dumpObjectInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
#endif // DISABLE_GUI
|
#endif // DISABLE_GUI
|
||||||
|
|
||||||
void Application::initializeTranslation()
|
void Application::initializeTranslation()
|
||||||
|
|||||||
@@ -110,7 +110,6 @@ protected:
|
|||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
bool event(QEvent *) override;
|
bool event(QEvent *) override;
|
||||||
#endif
|
#endif
|
||||||
bool notify(QObject *receiver, QEvent *event) override;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|||||||
Reference in New Issue
Block a user