Use overload resolution instead of static-call
Annotate for file src/package.lisp
2009-06-11 tobias 1 (defpackage :qt
2009-05-27 tobias 2 (:use :cl :smoke :cffi :bordeaux-threads :cxx-support)
2009-05-24 tobias 3 (:export #:app
2010-01-10 tobias 4 #:app-p
08:52:49 ' 5 #:exec
' 6 #:with-app
' 7 #:with-core-app
' 8
' 9 #:with-painter
' 10 #:single-shot
' 11 #:do-delayed-initialize
' 12
' 13 #:tr
' 14 #:with-translator
' 15 #:with-libqt-translator
' 16
' 17 #:qmethod
' 18 #:qsignal
' 19 #:qslot
' 20
' 21 #:property
' 22 #:property-p
' 23 #:properties
' 24 #:class-properties
' 25 #:class-direct-properties
' 26
' 27 #:from-variant
' 28 #:make-variant
' 29 #:make-lisp-variant
' 30 #:value
' 31 #:variant-boundp
' 32
' 33 #:search-file
' 34
' 35 #:connect
' 36 #:get-slot
' 37 #:get-signal
' 38 #:make-slot
' 39 #:make-signal
2009-06-05 tobias 40 #:connect-signal
07:45:07 ' 41 #:connect-function
2010-01-10 tobias 42 #:sender))
08:52:49 ' 43
' 44