Diffstat (limited to 'development/keyview/keyview.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | development/keyview/keyview.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/development/keyview/keyview.h b/development/keyview/keyview.h index 5f1e943..87c0d15 100644 --- a/development/keyview/keyview.h +++ b/development/keyview/keyview.h @@ -18,25 +18,25 @@ private slots: private: QLineEdit *unicode; QLineEdit *keycode; QLineEdit *modifiers; QLineEdit *isPress; QLineEdit *autoRepeat; - }; class KeyFilter : public QObject, public QWSServer::KeyboardFilter { Q_OBJECT public: KeyFilter( QObject* parent, const char* name = 0); + virtual ~KeyFilter(); virtual bool filter(int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat); signals: void keyPressed(int, int, int, bool, bool); }; |