From: Laurent Montel Date: Mon, 12 Aug 2024 21:13:02 +0000 (+0200) Subject: Set up KCrash after KAboutData::setApplicationData() X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/7a959bd49fce816ea83771f24afb250c6e4e0024 Set up KCrash after KAboutData::setApplicationData() --- diff --git a/src/main.cpp b/src/main.cpp index 703161b1e..df725a33f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -91,8 +91,6 @@ int main(int argc, char **argv) #endif #endif - KCrash::initialize(); - KLocalizedString::setApplicationDomain(dolphinTranslationDomain); KAboutData aboutData(QStringLiteral("dolphin"), @@ -130,6 +128,7 @@ int main(int argc, char **argv) aboutData.addAuthor(i18nc("@info:credit", "Michael Austin"), i18nc("@info:credit", "Documentation"), QStringLiteral("tuxedup@users.sourceforge.net")); KAboutData::setApplicationData(aboutData); + KCrash::initialize(); QCommandLineParser parser; aboutData.setupCommandLine(&parser);