Use KCrash

This commit is contained in:
Albert Astals Cid 2018-04-08 11:50:18 +02:00
parent 804d0bd42a
commit 1904f7e95e
3 changed files with 5 additions and 1 deletions

View file

@ -53,6 +53,7 @@ find_package(KF5 ${KF5_REQUIRED_VERSION} REQUIRED COMPONENTS
Config
ConfigWidgets
CoreAddons
Crash
DocTools
IconThemes
JS

View file

@ -27,7 +27,7 @@ ecm_add_app_icon(okular_SRCS ICONS ${ICONS_SRCS})
add_executable(okular ${okular_SRCS})
target_link_libraries(okular KF5::Parts KF5::WindowSystem)
target_link_libraries(okular KF5::Parts KF5::WindowSystem KF5::Crash)
if(NOT WIN32)
target_link_libraries(okular KF5::Activities)

View file

@ -20,6 +20,7 @@
#include <kwindowsystem.h>
#include <QApplication>
#include <KAboutData>
#include <KCrash>
#include <KMessageBox>
#include <QCommandLineParser>
#include <QCommandLineOption>
@ -39,6 +40,8 @@ int main(int argc, char** argv)
// set icon for shells which do not use desktop file metadata
QApplication::setWindowIcon(QIcon::fromTheme(QStringLiteral("okular")));
KCrash::initialize();
QCommandLineParser parser;
// The KDE4 version accepted flags such as -unique with a single dash -> preserve compatibility
parser.setSingleDashWordOptionMode(QCommandLineParser::ParseAsLongOptions);