mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
2e8b0cf502
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.
44 lines
866 B
C++
44 lines
866 B
C++
|
|
#include "editor.hpp"
|
|
|
|
#include <exception>
|
|
#include <iostream>
|
|
|
|
#include <QApplication>
|
|
#include <QIcon>
|
|
|
|
class Application : public QApplication
|
|
{
|
|
private:
|
|
|
|
bool notify (QObject *receiver, QEvent *event)
|
|
{
|
|
try
|
|
{
|
|
return QApplication::notify (receiver, event);
|
|
}
|
|
catch (const std::exception& exception)
|
|
{
|
|
std::cerr << "An exception has been caught: " << exception.what() << std::endl;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public:
|
|
|
|
Application (int& argc, char *argv[]) : QApplication (argc, argv) {}
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Q_INIT_RESOURCE (resources);
|
|
Application mApplication (argc, argv);
|
|
|
|
mApplication.setWindowIcon (QIcon (":./opencs.png"));
|
|
|
|
CS::Editor editor;
|
|
|
|
return editor.run();
|
|
}
|