By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 723
Collapse All | Expand All

(-)kdebase/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp.ORI (-1 / +1 lines)
Lines 400-406 Link Here
400
    kdDebug(1201) << this << " KonqSidebarDirTreeModule::slotNewItems " << entries.count() << endl;
400
    kdDebug(1201) << this << " KonqSidebarDirTreeModule::slotNewItems " << entries.count() << endl;
401
401
402
    Q_ASSERT(entries.count());
402
    Q_ASSERT(entries.count());
403
    KFileItem * firstItem = const_cast<KFileItemList&>(entries).first(); // qlist sucks for constness
403
    KFileItem * firstItem = const_cast<KFileItemList&>(entries).last(); // qlist sucks for constness
404
404
405
    // Find parent item - it's the same for all the items
405
    // Find parent item - it's the same for all the items
406
    KURL dir( firstItem->url().url(-1) );
406
    KURL dir( firstItem->url().url(-1) );

Return to bug 723