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

(-)a/tdecore/klibloader.cpp (-3 / +3 lines)
Lines 108-114 KLibrary::KLibrary( const TQString& libname, const TQString& filename, void * ha Link Here
108
108
109
KLibrary::~KLibrary()
109
KLibrary::~KLibrary()
110
{
110
{
111
//    kdDebug(150) << "Deleting KLibrary " << this << "  " << m_libname << endl;
111
    kdWarning() << "Deleting KLibrary " << this << "  " << m_libname << endl;
112
    if ( m_timer && m_timer->isActive() )
112
    if ( m_timer && m_timer->isActive() )
113
	m_timer->stop();
113
	m_timer->stop();
114
114
Lines 118-124 KLibrary::~KLibrary() Link Here
118
	    TQPtrListIterator<TQObject> it( m_objs );
118
	    TQPtrListIterator<TQObject> it( m_objs );
119
	    for ( ; it.current() ; ++it )
119
	    for ( ; it.current() ; ++it )
120
		{
120
		{
121
		    kdDebug(150) << "Factory still has object " << it.current() << " " << it.current()->name () << " Library = " << m_libname << endl;
121
		    kdWarning() << "Factory still has object " << it.current() << " " << it.current()->name () << " Library = " << m_libname << endl;
122
		    disconnect( it.current(), TQT_SIGNAL( destroyed() ),
122
		    disconnect( it.current(), TQT_SIGNAL( destroyed() ),
123
				this, TQT_SLOT( slotObjectDestroyed() ) );
123
				this, TQT_SLOT( slotObjectDestroyed() ) );
124
		}
124
		}
Lines 127-133 KLibrary::~KLibrary() Link Here
127
	}
127
	}
128
128
129
    if ( m_factory ) {
129
    if ( m_factory ) {
130
//	kdDebug(150) << " ... deleting the factory " << m_factory << endl;
130
	kdWarning() << " ... deleting the factory " << m_factory << endl;
131
	delete m_factory;
131
	delete m_factory;
132
        m_factory = 0L;
132
        m_factory = 0L;
133
    }
133
    }

Return to bug 2235