Re-run clang-format

This commit is contained in:
Nicolas Fella
2021-08-23 19:38:34 +02:00
parent 0f106b1bbc
commit 589dfe0343
26 changed files with 201 additions and 265 deletions

View File

@@ -3,8 +3,8 @@
#pragma once
#include <QObject>
#include <QIdentityProxyModel>
#include <QObject>
class QAbstractItemModel;
class KColorSchemeManager;
@@ -14,16 +14,15 @@ class ColorSchemer : public QObject
Q_OBJECT
Q_PROPERTY(QAbstractItemModel *model READ model CONSTANT)
public:
ColorSchemer(QObject* parent = nullptr);
ColorSchemer(QObject *parent = nullptr);
~ColorSchemer();
QAbstractItemModel* model() const;
QAbstractItemModel *model() const;
Q_INVOKABLE void apply(int idx);
Q_INVOKABLE void apply(const QString &name);
Q_INVOKABLE int indexForScheme(const QString &name) const;
Q_INVOKABLE QString nameForIndex(int index) const;
private:
KColorSchemeManager* c;
KColorSchemeManager *c;
};