diff --git a/src/file/extractor/main.cpp b/src/file/extractor/main.cpp index edd5ef53..fbf7d597 100644 --- a/src/file/extractor/main.cpp +++ b/src/file/extractor/main.cpp @@ -1,61 +1,61 @@ /* This file is part of the Nepomuk KDE project. Copyright (C) 2010-14 Vishesh Handa Copyright (C) 2010-2011 Sebastian Trueg This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) version 3, or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), which shall act as a proxy defined in Section 6 of version 3 of the license. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . */ #include "app.h" #include "../priority.h" #include #include #include #include #include #include #include int main(int argc, char* argv[]) { lowerIOPriority(); setIdleSchedulingPriority(); lowerPriority(); + QApplication::setDesktopSettingsAware(false); + QApplication app(argc, argv); + KAboutData aboutData(QStringLiteral("baloo"), i18n("Baloo File Extractor"), QLatin1String(PROJECT_VERSION)); aboutData.addAuthor(i18n("Vishesh Handa"), i18n("Maintainer"), QStringLiteral("vhanda@kde.org"), QStringLiteral("http://vhanda.in")); KCrash::initialize(); - QApplication::setDesktopSettingsAware(false); - QApplication app(argc, argv); - KAboutData::setApplicationData(aboutData); app.setQuitOnLastWindowClosed(false); auto disableSessionManagement = [](QSessionManager &sm) { sm.setRestartHint(QSessionManager::RestartNever); }; QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); Baloo::App appObject; return app.exec(); }