Small fixes in Application.

This commit is contained in:
Felix Geyer 2012-05-21 22:11:26 +02:00
parent b5249d196d
commit 76eb935024
3 changed files with 6 additions and 12 deletions

View file

@ -19,7 +19,6 @@
#define KEEPASSX_APPLICATION_H
#include <QtGui/QApplication>
#include "gui/MainWindow.h"
class Application : public QApplication
{
@ -27,12 +26,11 @@ class Application : public QApplication
public:
Application(int& argc, char** argv);
~Application();
bool event(QEvent *event);
bool event(QEvent* event);
Q_SIGNALS:
void openDatabase(const QString& filename);
void openFile(const QString& filename);
};
#endif // KEEPASSX_APPLICATION_H