From: espen Date: Sun, 27 Feb 2005 12:37:01 +0000 (+0000) Subject: Bug fix X-Git-Tag: clg-0-90~59 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/3a476d4e4be7f1ce4429bb617719a20a80052797 Bug fix --- diff --git a/gdk/gdk.lisp b/gdk/gdk.lisp index 1a2ece7..24b7c8d 100644 --- a/gdk/gdk.lisp +++ b/gdk/gdk.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gdk.lisp,v 1.14 2005/02/26 18:53:09 espen Exp $ +;; $Id: gdk.lisp,v 1.15 2005/02/27 12:37:45 espen Exp $ (in-package "GDK") @@ -146,7 +146,7 @@ ((%grab-time time) (unsigned 32))) (defbinding (pointer-ungrab "gdk_display_pointer_ungrab") - (&optional (display (display-get-default) time)) nil + (&optional (display (display-get-default)) time) nil (display display) ((%grab-time time) (unsigned 32))) @@ -159,7 +159,7 @@ ((%grab-time time) (unsigned 32))) (defbinding (keyboard-ungrab "gdk_display_keyboard_ungrab") - (&optional (display (display-get-default) time)) nil + (&optional (display (display-get-default)) time) nil (display display) ((%grab-time time) (unsigned 32))) diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index f97c341..3356515 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gtk.lisp,v 1.37 2005/02/26 18:55:41 espen Exp $ +;; $Id: gtk.lisp,v 1.38 2005/02/27 12:37:01 espen Exp $ (in-package "GTK") @@ -67,7 +67,7 @@ (defbinding grab-add () nil (widget widget)) -(defbinding grab-get-curent () widget) +(defbinding grab-get-current () widget) (defbinding grab-remove () nil (widget widget))