* remove Logging checkboxes in prefernces * commandline parser project path is absolute when called from commandline
17 lines
242 B
C++
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
|