diff finch/libgnt/gntbindable.h @ 15928:f00f2e283ffb

Some define changes. This helps in generating the python bindings.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 26 Mar 2007 04:10:39 +0000
parents 0e3a8505ebbe
children 5187395d6b78
line wrap: on
line diff
--- a/finch/libgnt/gntbindable.h	Mon Mar 26 04:06:15 2007 +0000
+++ b/finch/libgnt/gntbindable.h	Mon Mar 26 04:10:39 2007 +0000
@@ -15,15 +15,15 @@
 
 #define	GNTDEBUG	g_printerr("%s\n", __FUNCTION__)
 
-typedef struct _GnBindable			GntBindable;
-typedef struct _GnBindableClass		GntBindableClass;
+typedef struct _GntBindable			GntBindable;
+typedef struct _GntBindableClass		GntBindableClass;
 
-struct _GnBindable
+struct _GntBindable
 {
 	GObject inherit;
 };
 
-struct _GnBindableClass
+struct _GntBindableClass
 {
 	GObjectClass parent;
 
@@ -52,10 +52,10 @@
 typedef gboolean (*GntBindableActionCallback) (GntBindable *bindable, GList *params);
 typedef gboolean (*GntBindableActionCallbackNoParam)(GntBindable *bindable);
 
-typedef struct _GnBindableAction GntBindableAction;
-typedef struct _GnBindableActionParam GntBindableActionParam;
+typedef struct _GntBindableAction GntBindableAction;
+typedef struct _GntBindableActionParam GntBindableActionParam;
 
-struct _GnBindableAction
+struct _GntBindableAction
 {
 	char *name;        /* The name of the action */
 	union {
@@ -64,7 +64,7 @@
 	} u;
 };
 
-struct _GnBindableActionParam
+struct _GntBindableActionParam
 {
 	GntBindableAction *action;
 	GList *list;