gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):

The first parameters of the signals are now registered as GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
This commit is contained in:
Murray Cumming 2001-11-17 03:57:21 +00:00
parent 6eace48cb5
commit 3a34680249
8 changed files with 45 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -1,3 +1,9 @@
2001-11-17 Murray Cumming <murrayc@usa.net>
* gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
The first parameters of the signals are now registered as
GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
2001-11-17 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Build separate runtime and developer

View File

@ -80,7 +80,7 @@ gtk_text_tag_table_class_init (GtkTextTagTableClass *klass)
gtk_marshal_VOID__OBJECT_BOOLEAN,
G_TYPE_NONE,
2,
G_TYPE_OBJECT,
GTK_TYPE_TEXT_TAG,
G_TYPE_BOOLEAN);
signals[TAG_ADDED] =
@ -92,7 +92,7 @@ gtk_text_tag_table_class_init (GtkTextTagTableClass *klass)
gtk_marshal_VOID__OBJECT,
GTK_TYPE_NONE,
1,
G_TYPE_OBJECT);
GTK_TYPE_TEXT_TAG);
signals[TAG_REMOVED] =
g_signal_new ("tag_removed",
@ -103,7 +103,7 @@ gtk_text_tag_table_class_init (GtkTextTagTableClass *klass)
gtk_marshal_VOID__OBJECT,
GTK_TYPE_NONE,
1,
G_TYPE_OBJECT);
GTK_TYPE_TEXT_TAG);
}
static void