From cc9b2f2b6552d05cea55e92c937b37b216ea9d0d Mon Sep 17 00:00:00 2001 From: Jonathan Riddell Date: Tue, 27 Aug 2019 13:28:26 +0100 Subject: [PATCH] kcrash must be used else it will not be linked and crashes will crash instead of kcrashing Summary: kcrash must be used else it will not be linked and crashes will crash instead of kcrashing Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D23487 --- krunner/view.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/krunner/view.cpp b/krunner/view.cpp index 28fda10c4..b511d154b 100644 --- a/krunner/view.cpp +++ b/krunner/view.cpp @@ -56,6 +56,8 @@ View::View(QWindow *) setColor(QColor(Qt::transparent)); setFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); + KCrash::initialize(); + //used only by screen readers setTitle(i18n("KRunner")); m_config = KConfigGroup(KSharedConfig::openConfig(QStringLiteral("krunnerrc")), "General");