Files
Sourcetrail/src/lib_gui/qt/QtApplication.h
T
Eberhard Graether 3cbafa6456 logic: file associations for Mac and opening project files via Mac OS
* hide start screen when opening with project file
* added project icon file to bundle and file type association to plist
* listen for file open events from double click or drag and drop
* fixed crashes in window handling
2016-02-02 13:20:05 +01:00

16 lines
229 B
C++

#ifndef QT_APPLICATION_H
#define QT_APPLICATION_H
#include <QApplication>
class QtApplication
: public QApplication
{
public:
QtApplication(int& argc, char** argv);
bool event(QEvent *event);
};
#endif // QT_APPLICATION_H