summaryrefslogtreecommitdiff
path: root/noncore/apps
authorwazlaf <wazlaf>2002-10-13 11:15:57 (UTC)
committer wazlaf <wazlaf>2002-10-13 11:15:57 (UTC)
commitfb76065a9041fb9c0fef43127509dcdb2478c1ab (patch) (side-by-side diff)
treee8d131f99f34d35b434484cd13805c0a32762d3e /noncore/apps
parent72d9ce37fdd97b7ff37111e365cc8a14e0bbc52c (diff)
downloadopie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.zip
opie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.tar.gz
opie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.tar.bz2
compilation fixes
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/widget_layer.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/noncore/apps/opie-console/widget_layer.cpp b/noncore/apps/opie-console/widget_layer.cpp
index 3875a6e..0364e66 100644
--- a/noncore/apps/opie-console/widget_layer.cpp
+++ b/noncore/apps/opie-console/widget_layer.cpp
@@ -64,9 +64,6 @@ bool WidgetLayer::eventFilter( QObject *obj, QEvent *e )
}
if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ )
return FALSE; // not us
- if ( e->type() == QEvent::Wheel) {
- QApplication::sendEvent( m_scrollbar, e);
- }
#ifdef FAKE_CTRL_AND_ALT
static bool control = FALSE;
@@ -123,14 +120,6 @@ QChar(a,0));
#endif
return true; // stop the event
}
- if ( e->type() == QEvent::Enter ) {
- QObject::disconnect( (QObject*)cb, SIGNAL(dataChanged()),
- this, SLOT(onClearSelection()) );
- }
- if ( e->type() == QEvent::Leave ) {
- QObject::connect( (QObject*)cb, SIGNAL(dataChanged()),
- this, SLOT(onClearSelection()) );
- }
return QFrame::eventFilter( obj, e );
}