From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26370 invoked by alias); 4 Jul 2003 23:59:50 -0000 Mailing-List: contact guile-gtk-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: guile-gtk-owner@sources.redhat.com Received: (qmail 26330 invoked from network); 4 Jul 2003 23:59:49 -0000 Received: from unknown (HELO snoopy.pacific.net.au) (61.8.0.36) by sources.redhat.com with SMTP; 4 Jul 2003 23:59:49 -0000 Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.3) with ESMTP id h64NxlZY007861 for ; Sat, 5 Jul 2003 09:59:47 +1000 Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h64NxkQg007244 for ; Sat, 5 Jul 2003 09:59:46 +1000 (EST) Received: from localhost (ppp124.dyn228.pacific.net.au [203.143.228.124]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h64Nxjnh008390 for ; Sat, 5 Jul 2003 09:59:46 +1000 (EST) Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19YaSo-00035s-00; Sat, 05 Jul 2003 09:59:38 +1000 To: guile-gtk@sources.redhat.com Subject: Re: Added GdkImage support References: From: Kevin Ryde Mail-Copies-To: never Date: Fri, 04 Jul 2003 23:59:00 -0000 Message-ID: <87n0ftsv12.fsf@zip.com.au> User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2003-q3/txt/msg00002.txt.bz2 --=-=-= Content-length: 262 Marko Rauhamaa writes: > > - gdk-1.2.defs, gdk-support.c, guile-gtk.h: Added GdkImage and the > related functions. GdkImage is apparently not known to the gtk_type functions. * guile-gtk.c (sgtk_try_missing_type): Add GdkImage. --=-=-= Content-Disposition: attachment; filename=guile-gtk.c.gdkimage-missing.diff Content-length: 427 --- guile-gtk.c.~1.18.~ 2003-06-19 10:45:59.000000000 +1000 +++ guile-gtk.c 2003-07-04 17:50:24.000000000 +1000 @@ -247,6 +247,10 @@ { "GdkWMFunction", GTK_TYPE_FLAGS, NULL }, { "GdkVisibilityState", GTK_TYPE_ENUM, NULL }, { "GdkInputSource", GTK_TYPE_ENUM, NULL }, + + /* gtk 1.2.10 doesn't have type info for GdkImage */ + { "GdkImage", GTK_TYPE_BOXED, NULL }, + {NULL, GTK_TYPE_NONE, NULL} }; --=-=-=--