Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-05-22 00:11:26 +0400
committerFelix Geyer <debfx@fobos.de>2012-05-22 00:11:26 +0400
commit76eb935024fd777b88e8d0373e9a046f7f0af4e4 (patch)
tree738ec8f7bd9122deec090c426a02f501a5c9e0ba /src/gui/Application.h
parentb5249d196d82e6a5244040a784a0d41d44eb90a7 (diff)
Small fixes in Application.
Diffstat (limited to 'src/gui/Application.h')
-rw-r--r--src/gui/Application.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/Application.h b/src/gui/Application.h
index 491d7ebab..b620d7b41 100644
--- a/src/gui/Application.h
+++ b/src/gui/Application.h
@@ -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