[Kde-bindings] [Bug 112409] overloading qt event handling methods in Java subclasses fails

Richard Dale Richard_Dale at tipitina.demon.co.uk
Thu Oct 6 12:01:04 UTC 2005


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=112409         




------- Additional Comments From Richard_Dale tipitina demon co uk  2005-10-06 14:00 -------
SVN commit 467780 by rdale:

* Oops, wrong again. The event invoker should return false
  if it fails, not true
CCBUGS: 112409



 M  +1 -1      Invocation.java  


--- branches/KDE/3.5/kdebindings/qtjava/javalib/org/kde/qt/Invocation.java #467779:467780
 @ -448,7 +448,7  @
 				method = targetClass.getDeclaredMethod(methodName, parameterType);
 				method.setAccessible(true);
 			} catch (NoSuchMethodException e1) {
-				return true;
+				return false;
 			}
 			
 			targetClass = targetClass.getSuperclass();



More information about the Kde-bindings mailing list