summaryrefslogtreecommitdiff
path: root/gtk/gtkmain.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/gtkmain.c
parentb70abe38c18b0ad794f39cbecd9c80cb5ddd7f6a (diff)
downloadgtk+-344572dc7129d688a99bedff8ba3b8e46ffd0376.tar.gz
Renamed g_const_pointer => gconstpointer.
Diffstat (limited to 'gtk/gtkmain.c')
-rw-r--r--gtk/gtkmain.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 802ebce6af..732f7431e0 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -128,11 +128,11 @@ static gint gtk_timeout_remove_from_list (GList **list,
guint tag,
gint remove_link);
-static gint gtk_idle_compare (g_const_pointer a,
- g_const_pointer b);
+static gint gtk_idle_compare (gconstpointer a,
+ gconstpointer b);
-static gint gtk_timeout_compare (g_const_pointer a,
- g_const_pointer b);
+static gint gtk_timeout_compare (gconstpointer a,
+ gconstpointer b);
const guint gtk_major_version = GTK_MAJOR_VERSION;
const guint gtk_minor_version = GTK_MINOR_VERSION;
@@ -995,7 +995,7 @@ gtk_timeout_remove (guint tag)
* sure that we insert at the _end_ of the idles of this priority
*/
static gint
-gtk_idle_compare (g_const_pointer a, g_const_pointer b)
+gtk_idle_compare (gconstpointer a, gconstpointer b)
{
return (((const GtkIdleFunction *)a)->priority <
((const GtkIdleFunction *)b)->priority)
@@ -1364,7 +1364,7 @@ gtk_exit_func (void)
* sure that we insert after timeouts of equal interval
*/
static gint
-gtk_timeout_compare (g_const_pointer a, g_const_pointer b)
+gtk_timeout_compare (gconstpointer a, gconstpointer b)
{
return (((const GtkTimeoutFunction *)a)->interval <
((const GtkTimeoutFunction *)b)->interval)