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

main
Isabell Pflug 10 months ago
parent 8522dc296f
commit 70f7cbafb8

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

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

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

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

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

Loading…
Cancel
Save