summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
authorzecke <zecke>2004-04-05 13:11:21 (UTC)
committer zecke <zecke>2004-04-05 13:11:21 (UTC)
commit3c2e23bacf25fc73d51bfa98a3b2ea9c0890d540 (patch) (side-by-side diff)
tree7541a347abc4b028163ce9ed1b05d692c2941a56 /library/qpeapplication.cpp
parentf1708be741dfb73ceaffb633b44093f2cb2b3d57 (diff)
downloadopie-3c2e23bacf25fc73d51bfa98a3b2ea9c0890d540.zip
opie-3c2e23bacf25fc73d51bfa98a3b2ea9c0890d540.tar.gz
opie-3c2e23bacf25fc73d51bfa98a3b2ea9c0890d540.tar.bz2
Don't lock up with Qt2.3.8
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 5d05ed5..3370264 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -994,7 +994,7 @@ bool QPEApplication::qwsEventFilter( QWSEvent * e )
else {
// make sure our modal widget is ALWAYS on top
QWidget *topm = activeModalWidget();
- if ( topm ) {
+ if ( topm && static_cast<int>( topm->winId() ) != fe->simpleData.window) {
topm->raise();
}
}
@@ -1465,7 +1465,7 @@ bool QPEApplication::raiseAppropriateWindow()
}
// 3. Raise the active modal widget.
- if ( topm && topm != top ) {
+ if ( topm ) {
topm->show();
topm->raise();
// If we haven't already handled the fastAppShowing message