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

(-)original/qtruby.rb (-3 / +3 lines)
Lines 17-23 Link Here
17
 ***************************************************************************/
17
 ***************************************************************************/
18
=end
18
=end
19
19
20
module Qt
20
module TQt
21
	module DebugLevel
21
	module DebugLevel
22
		Off, Minimal, High, Extensive = 0, 1, 2, 3
22
		Off, Minimal, High, Extensive = 0, 1, 2, 3
23
	end
23
	end
Lines 34-45 Link Here
34
	end
34
	end
35
35
36
	@@debug_level = DebugLevel::Off
36
	@@debug_level = DebugLevel::Off
37
	def Qt.debug_level=(level)
37
	def TQt.debug_level=(level)
38
		@@debug_level = level
38
		@@debug_level = level
39
		Internal::setDebug TQt::QtDebugChannel::TQTDB_ALL if level >= DebugLevel::Extensive
39
		Internal::setDebug TQt::QtDebugChannel::TQTDB_ALL if level >= DebugLevel::Extensive
40
	end
40
	end
41
41
42
	def Qt.debug_level
42
	def TQt.debug_level
43
		@@debug_level
43
		@@debug_level
44
	end
44
	end
45
		
45
		

Return to bug 2442