1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 06:53:53 +00:00

Remove Directory Paths in Qt Classes Includes

Qt recommends that the path location not be used when including a class.
Also, this is how other files include Qt classes in the OpenCS app. This
change is for consistency only.
This commit is contained in:
Marc Bouvier 2013-08-21 17:14:29 -05:00
parent e03e2f0817
commit 2e8b0cf502
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
#include "editor.hpp"
#include <QtGui/QApplication>
#include <QApplication>
#include "model/doc/document.hpp"
#include "model/world/data.hpp"

View file

@ -4,7 +4,7 @@
#include <exception>
#include <iostream>
#include <QtGui/QApplication>
#include <QApplication>
#include <QIcon>
class Application : public QApplication