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

(-)kaffeine-3.5.13.1/kaffeine/src/player-parts/xine-part/kxinewidget.cpp.ORI (+4 lines)
Lines 2642-2648 Link Here
2642
2642
2643
bool KXineWidget::getAutoplayPluginURLS(const TQString& plugin, TQStringList& list)
2643
bool KXineWidget::getAutoplayPluginURLS(const TQString& plugin, TQStringList& list)
2644
{
2644
{
2645
#if XINE_MAJOR_VERSION > 1 || ( XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION >= 2 )
2646
	const char* const* urls = NULL;
2647
#else
2645
	char** urls = NULL;
2648
	char** urls = NULL;
2649
#endif
2646
	int num;
2650
	int num;
2647
	int i = 0;
2651
	int i = 0;
2648
2652

Return to bug 1262