summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--korganizer/kojournalview.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/korganizer/kojournalview.cpp b/korganizer/kojournalview.cpp
index 0523954..a23a3b2 100644
--- a/korganizer/kojournalview.cpp
+++ b/korganizer/kojournalview.cpp
@@ -168,8 +168,11 @@ void KOJournalView::showOnly ( Journal* j )
mEntry->setShowOnly();
}
void KOJournalView::showList(QPtrList<Journal> jl)
{
+ static bool ff = false;
+ if ( ff ) return;
+ ff = true;
//qDebug("KOJournalView::showList %d",jl.count() );
JournalEntry* mEntry = jEntries.first();
JournalEntry* firstEntry = mEntry;
int count = jl.count();
@@ -205,8 +208,9 @@ void KOJournalView::showList(QPtrList<Journal> jl)
mEntry->show();
}
mEntry = jEntries.next();
}
+ ff = false;
}
void KOJournalView::showDates(const QDate &start, const QDate &)
{