Consistently use pragma once in all headers

This commit is contained in:
Tobias Fella
2021-02-04 23:14:54 +01:00
parent 546d17b1a2
commit 1cb6b3bbd6
18 changed files with 29 additions and 48 deletions

View File

@@ -3,8 +3,8 @@
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#ifndef ROOMLISTMODEL_H
#define ROOMLISTMODEL_H
#pragma once
#include "connection.h"
#include "events/roomevent.h"
@@ -107,5 +107,3 @@ Q_SIGNALS:
void newMessage(const QString &_t1, const QString &_t2, const QString &_t3, const QString &_t4, const QString &_t5, const QImage &_t6);
void newHighlight(const QString &_t1, const QString &_t2, const QString &_t3, const QString &_t4, const QString &_t5, const QImage &_t6);
};
#endif // ROOMLISTMODEL_H