KIdentityManagement

identityutils.cpp
1// SPDX-FileCopyrightText: 2023 Claudio Cambra <claudio.cambra@kde.org>
2// SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
3
4#include "identityutils.h"
5
6#include <QTimer>
7
8using namespace KIdentityManagementQuick;
9bool IdentityUtils::removeIdentity(const QString &identityName)
10{
11 if (!mIdentityManager) {
12 return false;
13 }
14
15 const auto result = mIdentityManager->removeIdentity(identityName);
16 // Need to run async or will crash the UI if this is called from QML
18 return result;
19}
20
21#include "moc_identityutils.cpp"
void commit()
Commit changes to disk and emit changed() if necessary.
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 12:00:17 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.