diff options
author | senator <senator> | 2008-03-17 11:29:52 +0000 |
---|---|---|
committer | senator <senator> | 2008-03-17 11:29:52 +0000 |
commit | 96c3b5c064a26b8598943a122d9b6ecbdf1062e9 (patch) | |
tree | d7b11eaa9aa6884f014401df72fb21876c28326c /client/macro.h | |
parent | 5c925e49369e7593a81cd199fb2791c707122cef (diff) |
recent changes, dunno what exactly, but perhaps something with moving on to next dialog by clicking next
Diffstat (limited to 'client/macro.h')
-rw-r--r-- | client/macro.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/macro.h b/client/macro.h index 36f4f4f..9863d3a 100644 --- a/client/macro.h +++ b/client/macro.h @@ -28,7 +28,14 @@ #define __PRACRO_MACRO_H__ #include <QString> +#include <QObject> +#include <QEvent> -void macro(QString name); +class MyEventHandler : public QObject { +protected: + bool eventFilter( QObject *o, QEvent *e ); +}; + +void new_macro(QString name); #endif/*__PRACRO_MACRO_H__*/ |