🚚 Changed name of header file extension from .h to .hpp

main
Isabell Pflug 3 years ago
parent 8522dc296f
commit 70f7cbafb8

@ -12,8 +12,8 @@ SOURCES += \
samegame.cpp samegame.cpp
HEADERS += \ HEADERS += \
mainwindow.h \ mainwindow.hpp \
samegame.h samegame.hpp
FORMS += \ FORMS += \
mainwindow.ui mainwindow.ui

@ -1,4 +1,4 @@
#include "mainwindow.h" #include "mainwindow.hpp"
#include <QApplication> #include <QApplication>
#include <QDir> #include <QDir>

@ -1,4 +1,4 @@
#include "mainwindow.h" #include "mainwindow.hpp"
#include "ui_mainwindow.h" #include "ui_mainwindow.h"
extern std::unique_ptr<QSettings> settings; extern std::unique_ptr<QSettings> settings;

@ -16,7 +16,7 @@
#include <QStandardPaths> #include <QStandardPaths>
#include <QTextStream> #include <QTextStream>
#include "samegame.h" #include "samegame.hpp"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; } namespace Ui { class MainWindow; }

@ -1,4 +1,4 @@
#include "samegame.h" #include "samegame.hpp"
extern std::unique_ptr<QSettings> settings; extern std::unique_ptr<QSettings> settings;

Loading…
Cancel
Save