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

(-)tdeio/tdeio/kurlcompletion.cpp.orig (+6 lines)
Lines 778-787 Link Here
778
// Environment variables
778
// Environment variables
779
//
779
//
780
780
781
#if !defined(__OpenBSD__)
781
extern char **environ; // Array of environment variables
782
extern char **environ; // Array of environment variables
783
#endif
782
784
783
bool KURLCompletion::envCompletion(const MyURL &url, TQString *match)
785
bool KURLCompletion::envCompletion(const MyURL &url, TQString *match)
784
{
786
{
787
#if defined(__OpenBSD__)
788
	return false;
789
#else
785
	if ( url.file().at(0) != '$' )
790
	if ( url.file().at(0) != '$' )
786
		return false;
791
		return false;
787
792
Lines 816-821 Link Here
816
821
817
	*match = finished();
822
	*match = finished();
818
	return true;
823
	return true;
824
#endif
819
}
825
}
820
826
821
//////////////////////////////////////////////////
827
//////////////////////////////////////////////////

Return to bug 2109