cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
524 B
C++
26 lines
524 B
C++
/*
|
|
SPDX-FileCopyrightText: 2007 Simon Hausmann <hausmann@kde.org>
|
|
SPDX-FileCopyrightText: 2007 David Faure <faure@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KSTANDARDACTIONTEST_H
|
|
#define KSTANDARDACTIONTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class tst_KStandardAction : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
void shortcutForActionId();
|
|
void changingShortcut();
|
|
void testCreateOldStyle();
|
|
void testCreateNewStyle();
|
|
};
|
|
|
|
#endif // KSTANDARDACTIONTEST_H
|