Break API compatibility for qt:with-app and qt:exec & spellcheck
Annotate for file src/package.lisp
2010-01-10 tobias 1 (defpackage :cl-smoke.qt-impl
2009-06-11 tobias 2 (:use :cl :smoke :cffi :bordeaux-threads :cxx-support :alexandria))
14:59:48 ' 3
2010-01-10 tobias 4 (defpackage :cl-smoke.qt
2009-07-01 tobias 5 (:use) ;; do not use :cl to prevent collision with TIME and CHAR
2010-01-10 tobias 6 (:nicknames :qt)
08:52:49 ' 7 (:export #:app
' 8 #:app-p
' 9 #:exec
' 10 #:*exec-p*
' 11 #:with-app
' 12 #:with-core-app
' 13
' 14 #:with-painter
' 15 #:single-shot
' 16 #:do-delayed-initialize
' 17
' 18 #:tr
' 19 #:with-translator
' 20 #:with-libqt-translator
' 21
' 22 #:qmethod
' 23 #:qsignal
' 24 #:qslot
' 25
' 26 #:property
' 27 #:property-p
' 28 #:remove-property
' 29 #:properties
' 30 #:class-properties
' 31 #:class-direct-properties
' 32
' 33 #:make-char
' 34 #:from-char
' 35
' 36 #:from-variant
' 37 #:make-variant
' 38 #:make-lisp-variant
' 39 #:value
' 40 #:variant-boundp
' 41
' 42 #:search-file
' 43
' 44 #:connect
' 45 #:disconnect
' 46 #:disconnect-all
' 47 #:get-slot
' 48 #:get-signal
' 49 #:make-slot
' 50 #:make-signal
' 51 #:sender))
' 52
' 53