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

(-)kcontrol/konqhtml/htmlopts.cpp~ (-4 / +4 lines)
Lines 299-305 Link Here
299
    KConfig kdeglobals("kdeglobals", true, false);
299
    KConfig kdeglobals("kdeglobals", true, false);
300
    kdeglobals.setReadDefaults( useDefaults );
300
    kdeglobals.setReadDefaults( useDefaults );
301
	 kdeglobals.setGroup("KDE");
301
	 kdeglobals.setGroup("KDE");
302
    bool smoothScrolling = kdeglobals.readBoolEntry("SmoothScroll", DEFAULT_SMOOTHSCROLL);
302
    bool smoothScrolling = kdeglobals.readBoolEntry("SmoothScrolling", DEFAULT_SMOOTHSCROLL);
303
    if (smoothScrolling)
303
    if (smoothScrolling)
304
	m_pSmoothScrollingCombo->setCurrentItem( SmoothScrollingAlways );
304
	m_pSmoothScrollingCombo->setCurrentItem( SmoothScrollingAlways );
305
    else
305
    else
Lines 374-386 Link Here
374
    switch(m_pSmoothScrollingCombo->currentItem())
374
    switch(m_pSmoothScrollingCombo->currentItem())
375
    {
375
    {
376
      case SmoothScrollingAlways:
376
      case SmoothScrollingAlways:
377
        kdeglobals.writeEntry( "SmoothScroll", true );
377
        kdeglobals.writeEntry( "SmoothScrolling", true );
378
        break;
378
        break;
379
      case SmoothScrollingNever:
379
      case SmoothScrollingNever:
380
        kdeglobals.writeEntry( "SmoothScroll", false );
380
        kdeglobals.writeEntry( "SmoothScrolling", false );
381
        break;
381
        break;
382
      // case SmoothScrollingWhenEfficient:
382
      // case SmoothScrollingWhenEfficient:
383
        // kdeglobals.writeEntry( "SmoothScroll", somethingelse );
383
        // kdeglobals.writeEntry( "SmoothScrolling", somethingelse );
384
        // break;
384
        // break;
385
    }
385
    }
386
    kdeglobals.sync();
386
    kdeglobals.sync();

Return to bug 1001