Files
Sourcetrail/src/lib_gui/qt/QtApplication.h
T
Andreas Stallinger 56ab09159b ui: remove MessageNewLog
* remove Logging checkboxes in prefernces
* commandline parser project path is absolute when called from commandline
2016-11-14 13:38:31 +01:00

17 lines
242 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);
int exec();
};
#endif // QT_APPLICATION_H