Closed nandryshak closed 9 years ago
Are you using the latest Quicklisp dist version?
Yes I am, just installed everything Qt related today. I think this problem may be namespace/package related, maybe on my part. This works fine:
(ql:quickload :qtools)
(named-readtables:in-readtable :qtools)
(qtools:define-widget main-window (QWidget)
())
(qt:with-main-window (window (make-instance 'main-window)))
If I am correct in interpreting the error it's to do with an obscure reader macro related thing in the with-main-window macro. Try cloning from git and see if that works.
Cloning qt-libs
and qtools
from git works, thanks!
The next QL release should be on the coming weekend, so you should be able to switch back away from GIT then. Thanks for reporting.
I have a file like this:
When loading it with
ccl -l test.lisp
I get this error:Using Clozure Common Lisp Version 1.10-r16196 (WindowsX8632)
However, simply using CommonQt works fine: