Use C++ style overload resolution
Fri Apr 17 17:29:23 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Use C++ style overload resolution
hunk ./src/class-browser.lisp 84
- (cxx:load web-view
- (make-instance 'qt:url [_$_]
- :args (list (format nil "http://doc.trolltech.com/~A/~A.html" [_$_]
+ (cxx:load web-view (format nil "http://doc.trolltech.com/~A/~A.html" [_$_]
hunk ./src/class-browser.lisp 86
- (remove #\: (smoke::name class) :count 1)))))
+ (remove #\: (smoke::name class) :count 1)))
hunk ./src/hello-world_de.po 9
-"POT-Creation-Date: 2009-04-05 19:53+0200\n"
+"POT-Creation-Date: 2009-04-16 16:29+0200\n"
hunk ./src/hello-world_de.po 19
-#: i18n-hello-world.lisp:17
+#: i18n-hello-world.lisp:20
hunk ./src/hello-world_de.po 24
-#: i18n-hello-world.lisp:19
+#: i18n-hello-world.lisp:22
hunk ./src/launcher.lisp 14
- (qt:connect-function button "clicked()"
- #'(lambda () (funcall function)))
+ (qt:connect (qt:get-signal button "clicked()")
+ #'(lambda () (funcall function)))
hunk ./src/ui.lisp 20
- (unless (cxx:open file (value qt:iodevice.+read-only+)) ;;FIXME value
+ (unless (cxx:open file qt:iodevice.+read-only+)