[Falkon] [Bug 501535] Crash at startup
Kevin Kofler
bugzilla_noreply at kde.org
Sun Apr 20 02:30:49 BST 2025
https://bugs.kde.org/show_bug.cgi?id=501535
--- Comment #9 from Kevin Kofler <kevin.kofler at chello.at> ---
So something like:
- QObject::connect(m, &QMenu::aboutToHide, mApp->getWindow()->statusBar(),
&StatusBar::clearMessage);
+ QObject::connect(m, &QMenu::aboutToHide, [=]() {
+ mApp->getWindow()->statusBar()->clearMessage();
+ });
…
- QObject::connect(act, &QAction::hovered, mApp->getWindow()->statusBar(),
&StatusBar::clearMessage);
+ QObject::connect(act, &QAction::hovered, [=]() {
+ mApp->getWindow()->statusBar()->clearMessage();
+ });
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Unassigned-bugs
mailing list