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 335
Collapse All | Expand All

(-)/dev/shm/kdebase/konqueror/listview/konq_listviewwidget.cc (-4 / +5 lines)
Lines 1009-1018 Link Here
1009
	   // gather pixmap
1009
	   // gather pixmap
1010
	   TQPixmap *pix = new TQPixmap(*(_item->pixmap(0)));
1010
	   TQPixmap *pix = new TQPixmap(*(_item->pixmap(0)));
1011
1011
1012
	   // call the icon effect
1012
	   // call the icon effect if enabled
1013
           KIconEffect::visualActivate(viewport(), rect, pix);
1013
	   if (KGlobalSettings::showKonqIconActivationEffect() == true) {
1014
	 
1014
	       KIconEffect::visualActivate(viewport(), rect, pix);
1015
	   delete(pix);
1015
	       delete(pix);
1016
	   }
1016
	 }
1017
	 }
1017
   }
1018
   }
1018
   else
1019
   else

Return to bug 335