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

(-)tdelibs/tdecore/klibloader.cpp (-1 / +1 lines)
Lines 306-312 Link Here
306
    d = new KLibLoaderPrivate;
306
    d = new KLibLoaderPrivate;
307
    lt_dlinit();
307
    lt_dlinit();
308
    d->unload_mode = KLibLoaderPrivate::UNKNOWN;
308
    d->unload_mode = KLibLoaderPrivate::UNKNOWN;
309
    if (getenv("KDE_NOUNLOAD") != 0)
309
    if (getenv("TDE_NOUNLOAD") != 0)
310
        d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD;
310
        d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD;
311
    else if (getenv("KDE_DOUNLOAD") != 0)
311
    else if (getenv("KDE_DOUNLOAD") != 0)
312
        d->unload_mode = KLibLoaderPrivate::UNLOAD;
312
        d->unload_mode = KLibLoaderPrivate::UNLOAD;

Return to bug 860