diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa24b2e --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# C++ objects and libs + +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.dll +*.dylib + +# Qt-es + +/.qmake.cache +/.qmake.stash +*.pro.user +*.pro.user.* +*.qbs.user +*.qbs.user.* +*.moc +moc_*.cpp +qrc_*.cpp +ui_*.h +Makefile* +*build-* + +# QtCreator + +*.autosave + +# QtCtreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCtreator CMake +CMakeLists.txt.user + diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1bd19e6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +## [git] - 2019-03-06 +(first poikilos changes, based on https://github.com/egrath) +* changed `#include ` to `#include ` +* added Qt .gitignore diff --git a/Engine.h b/Engine.h index deb5e7d..0fda114 100644 --- a/Engine.h +++ b/Engine.h @@ -8,7 +8,7 @@ class View; #include #include #include -#include +#include #include "EventHandler.h" #include "UserInterface.h" diff --git a/EventHandler.h b/EventHandler.h index e98af0e..c843d08 100644 --- a/EventHandler.h +++ b/EventHandler.h @@ -5,7 +5,7 @@ #include #include -#include +#include #include "Debug.h" diff --git a/UserInterface.h b/UserInterface.h index bea7953..b19b027 100644 --- a/UserInterface.h +++ b/UserInterface.h @@ -6,7 +6,7 @@ class Engine; #include #include -#include +#include #include "Debug.h" #include "Engine.h" diff --git a/Utils.h b/Utils.h index fe738c0..8d920ea 100644 --- a/Utils.h +++ b/Utils.h @@ -2,7 +2,7 @@ #define UTILS_H #include -#include +#include #include "Debug.h" using namespace irr::core; diff --git a/View.h b/View.h index 7312216..8d15758 100644 --- a/View.h +++ b/View.h @@ -1,7 +1,7 @@ #ifndef VIEW_H #define VIEW_H -#include +#include #include "Debug.h" #include "Engine.h" diff --git a/extlib/CGUITTFont.cpp b/extlib/CGUITTFont.cpp index 70c7fba..520a5f1 100644 --- a/extlib/CGUITTFont.cpp +++ b/extlib/CGUITTFont.cpp @@ -1,6 +1,6 @@ // Kudus to Nalin for this wonderful piece of code! // See: http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=3995 -#include +#include using namespace irr; #include "CGUITTFont.h" diff --git a/extlib/CGUITTFont.h b/extlib/CGUITTFont.h index 95e6d0b..5bf51b2 100644 --- a/extlib/CGUITTFont.h +++ b/extlib/CGUITTFont.h @@ -1,7 +1,7 @@ #ifndef __C_GUI_TTFONT_H_INCLUDED__ #define __C_GUI_TTFONT_H_INCLUDED__ -#include +#include #include #include FT_FREETYPE_H