From kde-bindings Wed Nov 15 16:21:29 2006 From: Richard Dale Date: Wed, 15 Nov 2006 16:21:29 +0000 To: kde-bindings Subject: [Kde-bindings] KDE/kdebindings/qtruby Message-Id: <1163607689.363186.28548.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bindings&m=116360838526405 SVN commit 605157 by rdale: * When Qt::DBusInterface.call() was called with a single argument, it was failing with a method_missing() error. Fixes problem reported by Carsten Niehaus. CCMAIL: kde-bindings@kde.org M +6 -0 ChangeLog M +3 -1 rubylib/qtruby/lib/Qt/qtruby4.rb --- trunk/KDE/kdebindings/qtruby/ChangeLog #605156:605157 @@ -1,3 +1,9 @@ +2006-11-15 Richard Dale + + * When Qt::DBusInterface.call() was called with a single argument, + it was failing with a method_missing() error. Fixes problem + reported by Carsten Niehaus. + 2006-11-07 Richard Dale * Fixed a crash when a slot was inherited by a subclass, and the --- trunk/KDE/kdebindings/qtruby/rubylib/qtruby/lib/Qt/qtruby4.rb #605156:605157 @@ -438,7 +438,7 @@ def call(method_name, *args) if args.length == 0 - return super(method_name.to_sym) + return super(method_name) else # If the method is Qt::DBusInterface.call(), create an Array # 'dbusArgs' of Qt::Variants from '*args' @@ -1424,7 +1424,9 @@ class Variant < Qt::Base String = 10 + Date = 14 Time = 15 + DateTime = 16 def to_a return toStringList() _______________________________________________ Kde-bindings mailing list Kde-bindings@kde.org https://mail.kde.org/mailman/listinfo/kde-bindings