author | llornkcor <llornkcor> | 2002-11-19 12:33:34 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-19 12:33:34 (UTC) |
commit | 638b671dce5eff05a2ec666492c060fa2fd021a2 (patch) (unidiff) | |
tree | a76ccf2a416c1d771459f552e2ce5fa9f6805713 | |
parent | 30b3c39b9fc3d6e4da21c7f7406d66b7ebf02d1a (diff) | |
download | opie-638b671dce5eff05a2ec666492c060fa2fd021a2.zip opie-638b671dce5eff05a2ec666492c060fa2fd021a2.tar.gz opie-638b671dce5eff05a2ec666492c060fa2fd021a2.tar.bz2 |
change popup parent from 0 to this. please test
-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 1663af2..9293c6f 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp | |||
@@ -74,7 +74,7 @@ CardMonitor::~CardMonitor() { | |||
74 | 74 | ||
75 | void CardMonitor::popUp( QString message, QString icon ) { | 75 | void CardMonitor::popUp( QString message, QString icon ) { |
76 | if ( ! popupMenu ) { | 76 | if ( ! popupMenu ) { |
77 | popupMenu = new QPopupMenu(); | 77 | popupMenu = new QPopupMenu(this); |
78 | } | 78 | } |
79 | 79 | ||
80 | popupMenu->clear(); | 80 | popupMenu->clear(); |
@@ -98,7 +98,7 @@ void CardMonitor::popupTimeout() { | |||
98 | } | 98 | } |
99 | 99 | ||
100 | void CardMonitor::mousePressEvent( QMouseEvent * ) { | 100 | void CardMonitor::mousePressEvent( QMouseEvent * ) { |
101 | QPopupMenu *menu = new QPopupMenu(); | 101 | QPopupMenu *menu = new QPopupMenu(this); |
102 | QString cmd; | 102 | QString cmd; |
103 | int err=0; | 103 | int err=0; |
104 | 104 | ||