mirror of https://github.com/KDE/kasts.git
Use pragma once everywhere
This commit is contained in:
parent
c7c774d5be
commit
787b373339
|
@ -4,8 +4,7 @@
|
|||
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
*/
|
||||
|
||||
#ifndef AUTHOR_H
|
||||
#define AUTHOR_H
|
||||
#pragma once
|
||||
|
||||
#include <QObject>
|
||||
|
||||
|
@ -30,5 +29,3 @@ private:
|
|||
QString m_email;
|
||||
QString m_url;
|
||||
};
|
||||
|
||||
#endif // AUTHOR_H
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
||||
* SPDX-FileCopyrightText: 2021-2022 Bart De Vries <bart@mogwai.be>
|
||||
* SPDX-FileCopyrightText: 2021-2023 Bart De Vries <bart@mogwai.be>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
*/
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
/**
|
||||
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
||||
* SPDX-FileCopyrightText: 2021-2022 Bart De Vries <bart@mogwai.be>
|
||||
* SPDX-FileCopyrightText: 2021-2023 Bart De Vries <bart@mogwai.be>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
*/
|
||||
|
||||
#ifndef ENTRY_H
|
||||
#define ENTRY_H
|
||||
#pragma once
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QDebug>
|
||||
|
@ -111,5 +110,3 @@ private:
|
|||
QString m_image;
|
||||
bool m_hasenclosure = false;
|
||||
};
|
||||
|
||||
#endif // ENTRY_H
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
SPDX-License-Identifier: LGPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_SOLID_EXTRAS_H
|
||||
#define CONFIG_SOLID_EXTRAS_H
|
||||
#pragma once
|
||||
|
||||
#cmakedefine HAVE_NM
|
||||
|
||||
#endif
|
||||
|
|
|
@ -4,8 +4,7 @@
|
|||
SPDX-License-Identifier: LGPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef SOLIDEXTRAS_NETWORKSTATUS_H
|
||||
#define SOLIDEXTRAS_NETWORKSTATUS_H
|
||||
#pragma once
|
||||
|
||||
#include "kastssolidextras_export.h"
|
||||
|
||||
|
@ -39,5 +38,3 @@ Q_SIGNALS:
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // SOLIDEXTRAS_NETWORKSTATUS_H
|
||||
|
|
Loading…
Reference in New Issue