Run clangformat everywhere

This commit is contained in:
SimoneN64
2024-08-27 21:35:07 +02:00
parent b3a4a302cb
commit e253627890
74 changed files with 5536 additions and 4358 deletions

View File

@@ -1,14 +1,14 @@
#pragma once
#include <QWidget>
#include <QComboBox>
#include <JSONUtils.hpp>
#include <QComboBox>
#include <QWidget>
class CPUSettings : public QWidget {
QComboBox* cpuTypes = new QComboBox;
QComboBox *cpuTypes = new QComboBox;
Q_OBJECT
public:
CPUSettings(nlohmann::json&);
nlohmann::json& settings;
CPUSettings(nlohmann::json &);
nlohmann::json &settings;
Q_SIGNALS:
void modified();
};
};