summaryrefslogtreecommitdiff
path: root/gtk/gtksignal.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@src.gnome.org>1998-06-10 16:59:28 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-06-10 16:59:28 +0000
commit344572dc7129d688a99bedff8ba3b8e46ffd0376 (patch)
tree277d695c2d87fbd4eec6ad05dfcc7ea17cf4280d /gtk/gtksignal.c
parentb70abe38c18b0ad794f39cbecd9c80cb5ddd7f6a (diff)
downloadgtk+-344572dc7129d688a99bedff8ba3b8e46ffd0376.tar.gz
Renamed g_const_pointer => gconstpointer.
Diffstat (limited to 'gtk/gtksignal.c')
-rw-r--r--gtk/gtksignal.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtksignal.c b/gtk/gtksignal.c
index 0e08565bb4..45330e84f1 100644
--- a/gtk/gtksignal.c
+++ b/gtk/gtksignal.c
@@ -119,9 +119,9 @@ struct _GtkDisconnectInfo
};
-static guint gtk_signal_hash (g_const_pointer h);
-static gint gtk_signal_compare (g_const_pointer h1,
- g_const_pointer h2);
+static guint gtk_signal_hash (gconstpointer h);
+static gint gtk_signal_compare (gconstpointer h1,
+ gconstpointer h2);
static GtkHandler* gtk_signal_handler_new (void);
static void gtk_signal_handler_ref (GtkHandler *handler);
static void gtk_signal_handler_unref (GtkHandler *handler,
@@ -1186,7 +1186,7 @@ gtk_signal_set_funcs (GtkSignalMarshal marshal_func,
}
static guint
-gtk_signal_hash (g_const_pointer h)
+gtk_signal_hash (gconstpointer h)
{
register const GtkSignalHash *hash = h;
@@ -1194,8 +1194,8 @@ gtk_signal_hash (g_const_pointer h)
}
static gint
-gtk_signal_compare (g_const_pointer h1,
- g_const_pointer h2)
+gtk_signal_compare (gconstpointer h1,
+ gconstpointer h2)
{
register const GtkSignalHash *hash1 = h1;
register const GtkSignalHash *hash2 = h2;