summaryrefslogtreecommitdiff
authorwazlaf <wazlaf>2002-10-13 11:15:57 (UTC)
committer wazlaf <wazlaf>2002-10-13 11:15:57 (UTC)
commitfb76065a9041fb9c0fef43127509dcdb2478c1ab (patch) (unidiff)
treee8d131f99f34d35b434484cd13805c0a32762d3e
parent72d9ce37fdd97b7ff37111e365cc8a14e0bbc52c (diff)
downloadopie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.zip
opie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.tar.gz
opie-fb76065a9041fb9c0fef43127509dcdb2478c1ab.tar.bz2
compilation fixes
Diffstat (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 )
64 } 64 }
65 if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ ) 65 if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ )
66 return FALSE; // not us 66 return FALSE; // not us
67 if ( e->type() == QEvent::Wheel) {
68 QApplication::sendEvent( m_scrollbar, e);
69 }
70 67
71#ifdef FAKE_CTRL_AND_ALT 68#ifdef FAKE_CTRL_AND_ALT
72 static bool control = FALSE; 69 static bool control = FALSE;
@@ -123,14 +120,6 @@ QChar(a,0));
123#endif 120#endif
124 return true; // stop the event 121 return true; // stop the event
125 } 122 }
126 if ( e->type() == QEvent::Enter ) {
127 QObject::disconnect( (QObject*)cb, SIGNAL(dataChanged()),
128 this, SLOT(onClearSelection()) );
129 }
130 if ( e->type() == QEvent::Leave ) {
131 QObject::connect( (QObject*)cb, SIGNAL(dataChanged()),
132 this, SLOT(onClearSelection()) );
133 }
134 return QFrame::eventFilter( obj, e ); 123 return QFrame::eventFilter( obj, e );
135} 124}
136 125