edb68153e3
- kf6-knewstuff/kwallet: removed all-zero blake3 placeholders - CONSOLE-TO-KDE-DESKTOP-PLAN.md: 20→22 KF6 enabled count - BOOT-PROCESS-IMPROVEMENT-PLAN.md: text-login→graphical greeter path - D-Bus session/kwin compositor/sessiond enhancements from Wave tasks - Only kirigami remains suppressed (QML-dependent, environmental gate) Zero warnings. 24 commits total.
24 lines
374 B
C++
24 lines
374 B
C++
/*
|
|
This file is part of the KDE Libraries
|
|
SPDX-FileCopyrightText: 2014 Valentin Rusu <kde@rusu.info>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KWALLETBOTH_H
|
|
#define KWALLETBOTH_H
|
|
|
|
#include <QObject>
|
|
|
|
class KWalletBothTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
private Q_SLOTS:
|
|
void init();
|
|
void openWallet();
|
|
};
|
|
|
|
#endif // KWALLETBOTH_H
|