diff --git a/src/knemod/main.cpp b/src/knemod/main.cpp index 29fa53b..3825171 100644 --- a/src/knemod/main.cpp +++ b/src/knemod/main.cpp @@ -1,49 +1,57 @@ /* This file is part of KNemo Copyright (C) 2004, 2006 Percy Leonhardt Copyright (C) 2009, 2010 John Stamp KNemo is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. KNemo 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include "knemodaemon.h" #include -#include +#include +#include +#include +#include +#include extern "C" int main(int argc, char *argv[] ) { - KNemoDaemon::createAboutData(); - KCmdLineArgs::init( argc, argv, KNemoDaemon::aboutData() ); - KUniqueApplication::addCmdLineOptions(); + KLocalizedString::setApplicationDomain("knemo"); + QApplication app(argc, argv); - if ( !KUniqueApplication::start() ) - { - fprintf( stderr, "KNemo is already running!\n" ); - exit( 0 ); - } - KUniqueApplication app; - app.disableSessionManagement(); - app.setQuitOnLastWindowClosed( false ); + QCoreApplication::setApplicationName(i18n("KNemo")); + QCoreApplication::setOrganizationDomain("kde.org"); + + auto disableSessionManagement = [] (QSessionManager &sm) { + sm.setRestartHint(QSessionManager::RestartNever); + }; + QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); + QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); + + QCommandLineParser parser; + parser.addVersionOption(); + parser.addHelpOption(); + parser.process(app); + + KDBusService service(KDBusService::Unique); KNemoDaemon knemo; - int ret = app.exec(); - KNemoDaemon::destroyAboutData(); - return ret; + return app.exec(); }