[Kde-bindings] branches/KDE/4.4/kdebindings/ruby/qtruby

Richard Dale Richard_Dale at tipitina.demon.co.uk
Sun Mar 7 21:05:03 UTC 2010


SVN commit 1100563 by rdale:

* QtRuby overrides public_methods(), singleton_methods() and 
  protected_methods(), but omitted the optional 'all' argument. Thanks to
  Paolo Capriotti for the fix and bug report.

CCMAIL: kde-bindings at kde.org



 M  +3 -0      ChangeLog  
 M  +3 -3      src/lib/Qt/qtruby4.rb  


--- branches/KDE/4.4/kdebindings/ruby/qtruby/ChangeLog #1100562:1100563
@@ -4,6 +4,9 @@
 	  reported by ruby.twiddler
 	* Drag and drop events in Plasma applets weren't being handled correctly.
 	  Fixes problem reported by Robert Riemann
+	* QtRuby overrides public_methods(), singleton_methods() and 
+	  protected_methods(), but omitted the optional 'all' argument. Thanks to
+	  Paolo Capriotti for the fix and bug report.
 
 2009-12-11  Richard Dale  <richard.j.dale at gmail.com>
 
--- branches/KDE/4.4/kdebindings/ruby/qtruby/src/lib/Qt/qtruby4.rb #1100562:1100563
@@ -216,16 +216,16 @@
 			qt_methods(super, 0x0)
 		end
 	
-		def protected_methods
+		def protected_methods(all=true)
 			# From smoke.h, Smoke::mf_protected 0x80
 			qt_methods(super, 0x80)
 		end
 	
-		def public_methods
+		def public_methods(all=true)
 			methods
 		end
 	
-		def singleton_methods
+		def singleton_methods(all=true)
 			# From smoke.h, Smoke::mf_static 0x01
 			qt_methods(super, 0x01)
 		end



More information about the Kde-bindings mailing list