author | zautrix <zautrix> | 2005-08-05 19:37:52 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-08-05 19:37:52 (UTC) |
commit | 6bf157dca5ab703c7f1674c117cc62d9675f4bde (patch) (side-by-side diff) | |
tree | 3f9df43dab51dfc409779bb31085b7bcbeee16ff /korganizer/kojournalview.cpp | |
parent | 78ae7e3faed42b510f4f0a60007115756cd06128 (diff) | |
download | kdepimpi-6bf157dca5ab703c7f1674c117cc62d9675f4bde.zip kdepimpi-6bf157dca5ab703c7f1674c117cc62d9675f4bde.tar.gz kdepimpi-6bf157dca5ab703c7f1674c117cc62d9675f4bde.tar.bz2 |
fixx
Diffstat (limited to 'korganizer/kojournalview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | korganizer/kojournalview.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/korganizer/kojournalview.cpp b/korganizer/kojournalview.cpp index 0523954..a23a3b2 100644 --- a/korganizer/kojournalview.cpp +++ b/korganizer/kojournalview.cpp @@ -163,17 +163,20 @@ void KOJournalView::showOnly ( Journal* j ) } QPtrList<Journal> jl; jl.append ( j ); showList( jl ); JournalEntry* mEntry = jEntries.first(); 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(); int iii = 0; while ( iii < count ) { if ( !mEntry ) { mEntry = getNewEntry(); @@ -201,16 +204,17 @@ void KOJournalView::showList(QPtrList<Journal> jl) mEntry->setVisibleMode( false ); } else { mEntry->setVisibleMode( true ); mEntry->show(); } mEntry = jEntries.next(); } + ff = false; } void KOJournalView::showDates(const QDate &start, const QDate &) { mDate = start; mDateLabel->setText(KGlobal::locale()->formatDate(mDate)); QPtrList<Journal> jl = calendar()->journals4Date( start ); showList( jl ); |