Warning, file /utilities/kwalletmanager/src/konfigurator/savehelper.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2013 Valentin Rusu <kde@rusu.info>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "savehelper.h"
0008 
0009 #include <KAuth/HelperSupport>
0010 
0011 #include <QCoreApplication>
0012 #include <QDebug>
0013 
0014 ActionReply SaveHelper::save(const QVariantMap &args)
0015 {
0016     Q_UNUSED(args);
0017     const qint64 uid = QCoreApplication::applicationPid();
0018     qDebug() << "executing uid=" << uid;
0019 
0020     return ActionReply::SuccessReply();
0021 }
0022 
0023 KAUTH_HELPER_MAIN("org.kde.kcontrol.kcmkwallet5", SaveHelper)
0024 
0025 #include "moc_savehelper.cpp"