Fix invalid keyword argument errors in defclass qt-class.
Thu Aug 27 13:17:58 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Fix invalid keyword argument errors in defclass qt-class.
hunk ./src/commonqt.lisp 228
- &rest args)
+ &rest args &key &allow-other-keys)
hunk ./src/commonqt.lisp 231
-(defmethod reinitialize-instance :around ((qt-class qt-class) &rest args)
+(defmethod reinitialize-instance :around ((qt-class qt-class)
+ &rest args &key &allow-other-keys)
hunk ./tests/test.lisp 146
- (qapropos "QObject")
- (qdescribe "QObject"))
+ (with-output-to-string (*standard-output*)
+ (qapropos "QObject")
+ (qdescribe "QObject")))