From 74363a9e1d5688d65286e7fea156227b68a28002 Mon Sep 17 00:00:00 2001 From: zecke Date: Sat, 14 Aug 2004 17:15:44 +0000 Subject: -Remove the KeyFilter on destruction Alwin could we either add a 'QObject' as a owner so that we could use QGuardedPtr or look for the deleteEvent ourselves. Or let us create a KeyFilter ourselves that auto registers (maybe) but cleans up itself in any case? --- (limited to 'development/keyview/keyview.cpp') diff --git a/development/keyview/keyview.cpp b/development/keyview/keyview.cpp index 8187744..cf082a8 100644 --- a/development/keyview/keyview.cpp +++ b/development/keyview/keyview.cpp @@ -65,11 +65,16 @@ KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name { } +KeyFilter::~KeyFilter() { + /* we need to remove the KeyFilter */ + Opie::Core::OKeyFilter::inst()->remHandler( this ); +} + bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat) { qDebug( "unicode: %d, keycode: %d, modifiers: %0x, isPress: %d, autoRepeat: %d", - unicode, keycode, modifiers, isPress ); + unicode, keycode, modifiers, isPress, autoRepeat ); emit keyPressed(unicode, keycode, modifiers, isPress, autoRepeat); return 0; // return 1 to stop key emiting -- cgit v0.9.0.2