summaryrefslogtreecommitdiffabout
path: root/korganizer/kojournalview.cpp
Side-by-side diff
Diffstat (limited to 'korganizer/kojournalview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kojournalview.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/korganizer/kojournalview.cpp b/korganizer/kojournalview.cpp
index a23a3b2..406df5a 100644
--- a/korganizer/kojournalview.cpp
+++ b/korganizer/kojournalview.cpp
@@ -39,2 +39,3 @@
#include <kglobal.h>
+#include <ktextedit.h>
@@ -179,2 +180,3 @@ void KOJournalView::showList(QPtrList<Journal> jl)
int iii = 0;
+ QWidget* fw = qApp->focusWidget ();
while ( iii < count ) {
@@ -189,2 +191,6 @@ void KOJournalView::showList(QPtrList<Journal> jl)
} else {
+ int xxx = -1, yyy = -1;
+ if ( ((QWidget*) mEntry->editor() ) == fw ) {
+ mEntry->editor()->getCursorPosition( &xxx,&yyy);
+ }
mEntry->setVisibleMode( true );
@@ -194,2 +200,5 @@ void KOJournalView::showList(QPtrList<Journal> jl)
mEntry->show();
+ if ( xxx > -1 && yyy > -1 ) {
+ mEntry->editor()->setCursorPosition( xxx, yyy );
+ }
mEntry = jEntries.next();