gtk_assistant_set_forward_func

"Matthew Kennedy" <[email protected]> Sun, 5 Aug 2007 13:41:24 -0500
Newsgroups gmane.lisp.clg.devel
Message-ID <[email protected]>
Attached is a patch that fixes a typo. There is no such function
"gtk_assistant_set_forward_func" in GTK+, I think the function we're
after is "gtk_assistant_set_forward_page_func".

Matt


WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL #x203C9596> on
         #<CL-SOURCE-FILE "gtk" #x203C92E6>.
** - Continuable Error
FFI::FOREIGN-LIBRARY-FUNCTION: no dynamic object named
      "gtk_assistant_set_forward_func"
     in library :DEFAULT
If you continue (by typing 'continue'): Skip foreign object creation
The following restarts are also available:
RETRY          :R1      Retry performing #<ASDF:LOAD-OP NIL
#x203FD02E> on #<ASDF:CL-SOURCE-FILE "gtk" #x203C92E6>.
ACCEPT         :R2      Continue, treating #<ASDF:LOAD-OP NIL
#x203FD02E> on #<ASDF:CL-SOURCE-FILE "gtk" #x203C92E6> as having been
successful.
ABORT          :R3      ABORT
Break 1 GTK[2]>

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

_______________________________________________
Clg-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/clg-devel
clg-asssistant-set-page-func.patch (text/x-diff, 652 B)
Index: gtk/gtk.lisp
===================================================================
RCS file: /cvsroot/clg/clg/gtk/gtk.lisp,v
retrieving revision 1.81
diff -u -r1.81 gtk.lisp
--- gtk/gtk.lisp	12 Jul 2007 13:55:59 -0000	1.81
+++ gtk/gtk.lisp	5 Aug 2007 18:37:38 -0000
@@ -552,7 +552,7 @@
   (define-callback-marshal %assistant-page-func-callback int
     ((current-page int)))
 
-  (defbinding assistant-set-forward-func (assistant function) nil
+  (defbinding assistant-set-forward-page-func (assistant function) nil
     (assistant assistant)
     (%assistant-page-func-callback callback)
     ((register-callback-function function) pointer-data)