Mark overriden methods as Q_DECL_OVERRIDE.

This commit is contained in:
Felix Geyer 2012-06-29 14:37:29 +02:00
parent 4e6cf15a09
commit e144f7c85a
17 changed files with 58 additions and 54 deletions

View file

@ -20,6 +20,8 @@
#include <QtGui/QApplication>
#include "core/Global.h"
class Application : public QApplication
{
Q_OBJECT
@ -27,7 +29,7 @@ class Application : public QApplication
public:
Application(int& argc, char** argv);
bool event(QEvent* event);
bool event(QEvent* event) Q_DECL_OVERRIDE;
Q_SIGNALS:
void openFile(const QString& filename);