[libgd] Add missing fix for a test



commit f18e264b383f73b87ec586bbe49728096793386b
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Tue Feb 12 15:29:12 2013 -0500

    Add missing fix for a test

 test-stack.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/test-stack.c b/test-stack.c
index ad8cf46..629a9fd 100644
--- a/test-stack.c
+++ b/test-stack.c
@@ -16,7 +16,7 @@ set_visible_child_name (GtkWidget *button, gpointer data)
 }
 
 static void
-toggle_homogenous (GtkWidget *button, gpointer data)
+toggle_homogeneous (GtkWidget *button, gpointer data)
 {
   gboolean active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));
   g_print ("active %d\n", active);
@@ -85,7 +85,7 @@ main (gint argc,
 
   button = gtk_check_button_new_with_label ("humongous");
   gtk_container_add (GTK_CONTAINER (hbox), button);
-  g_signal_connect (button, "clicked", (GCallback) toggle_homogenous, NULL);
+  g_signal_connect (button, "clicked", (GCallback) toggle_homogeneous, NULL);
 
   gtk_widget_show_all (window);
   gtk_main ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]