summaryrefslogtreecommitdiff
path: root/noncore/applets/notesapplet
authorllornkcor <llornkcor>2002-09-22 01:21:48 (UTC)
committer llornkcor <llornkcor>2002-09-22 01:21:48 (UTC)
commit4ad2edeaf52db70042ba27a97e16733cbc6a8cc0 (patch) (side-by-side diff)
treeab2adb51887a5a1ceece5b2ba4b1131c13cc36d7 /noncore/applets/notesapplet
parentad9e290551c610e4ccaafb20b72699b39b55d079 (diff)
downloadopie-4ad2edeaf52db70042ba27a97e16733cbc6a8cc0.zip
opie-4ad2edeaf52db70042ba27a97e16733cbc6a8cc0.tar.gz
opie-4ad2edeaf52db70042ba27a97e16733cbc6a8cc0.tar.bz2
fix race
Diffstat (limited to 'noncore/applets/notesapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/notesapplet/notes.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp
index 64731e3..a4aa093 100644
--- a/noncore/applets/notesapplet/notes.cpp
+++ b/noncore/applets/notesapplet/notes.cpp
@@ -270,7 +270,7 @@ void NotesControl::populateBox() {
}
list.sort();
box->insertStringList(list,-1);
-
+ doPopulate=false;
}
void NotesControl::load() {
@@ -344,15 +344,15 @@ void NotesApplet::mousePressEvent( QMouseEvent *) {
} else {
// vc = new NotesControl;
// QPoint curPos = mapToGlobal( rect().topLeft() );
- vc->show();
- vc->move( 5, 18);
- vc->doPopulate=true;
- vc->populateBox();
- vc->load();
-
-
- this->setFocus();
- vc->view->setFocus();
+ vc->show();
+ vc->move( 5, 18);
+ vc->doPopulate=true;
+ vc->populateBox();
+ vc->doPopulate=false;
+
+ vc->load();
+// this->setFocus();
+ vc->view->setFocus();
}
}