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

(-)a/tdeioslave/media/libmediacommon/notifiersettings.cpp (-2 / +4 lines)
Lines 161-168 void NotifierSettings::resetAutoAction( const TQString &mimetype ) Link Here
161
	if ( m_autoMimetypesMap.contains( mimetype ) )
161
	if ( m_autoMimetypesMap.contains( mimetype ) )
162
	{
162
	{
163
		NotifierAction *action = m_autoMimetypesMap[mimetype];
163
		NotifierAction *action = m_autoMimetypesMap[mimetype];
164
		action->removeAutoMimetype( mimetype );
164
		if ( action ) {
165
		m_autoMimetypesMap.remove(mimetype);
165
			action->removeAutoMimetype( mimetype );
166
		}
167
		m_autoMimetypesMap[mimetype] = 0L;
166
	}
168
	}
167
}
169
}
168
170

Return to bug 2941