X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/66b1c1c2f7cfc9c092268685496b0dd659987c64..bedf7b846adc5a77f8bfa13081e1ac5b458e341b:/gtk/gtk.lisp?ds=sidebyside diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 9f973bb..b93018a 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtk.lisp,v 1.92 2008/04/10 20:38:49 espen Exp $ +;; $Id: gtk.lisp,v 1.94 2008/05/06 00:04:42 espen Exp $ (in-package "GTK") @@ -602,8 +602,8 @@ (defmethod compute-signal-function ((bin bin) signal function object args) (declare (ignore signal)) (if (eq object :child) - #'(lambda (&rest emission-args) - (apply function (bin-child bin) (nconc (rest emission-args) args))) + #'(lambda (bin &rest emission-args) + (apply function (bin-child bin) (nconc emission-args args))) (call-next-method))) @@ -1686,7 +1686,7 @@ icons) (defbinding %window-set-default-icon () nil - (icons (glist gdk:pixbuf))) + (icon gdk:pixbuf)) (defgeneric (setf window-default-icon) (icon))