Rename to canonicalize_key. Adjust all callers.
authorMatthias Clasen <matthiasc@src.gnome.org>
Sat, 7 Dec 2002 22:15:34 +0000 (22:15 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 7 Dec 2002 22:15:34 +0000 (22:15 +0000)
* gparam.c (canonalize_key): Rename to canonicalize_key. Adjust
all callers.

gobject/ChangeLog
gobject/gparam.c

index b1dd97a..91bb211 100644 (file)
@@ -1,3 +1,13 @@
+2002-12-07  Matthias Clasen  <maclas@gmx.de>
+
+       * gparam.c (canonalize_key): Rename to canonicalize_key. Adjust
+       all callers.
+
+2002-12-05  Matthias Clasen  <maclas@gmx.de>
+
+       * gsignal.c (g_signal_new): Explain allowed signal names in more
+       detail.
+
 2002-12-04  Matthias Clasen  <maclas@gmx.de>
 
        * gsignal.h (g_signal_add_emission_hook): 
index db0568d..0d4a1b3 100644 (file)
@@ -258,7 +258,7 @@ g_param_spec_get_blurb (GParamSpec *pspec)
 }
 
 static void
-canonalize_key (gchar *key)
+canonicalize_key (gchar *key)
 {
   gchar *p;
   
@@ -289,7 +289,7 @@ g_param_spec_internal (GType        param_type,
   
   pspec = (gpointer) g_type_create_instance (param_type);
   pspec->name = g_strdup (name);
-  canonalize_key (pspec->name);
+  canonicalize_key (pspec->name);
   pspec->_nick = g_strdup (nick);
   pspec->_blurb = g_strdup (blurb);
   pspec->flags = (flags & G_PARAM_USER_MASK) | (flags & G_PARAM_MASK);
@@ -667,7 +667,7 @@ param_spec_ht_lookup (GHashTable  *hash_table,
       key.name = g_strdup (param_name);
       key.owner_type = owner_type;
       
-      canonalize_key (key.name);
+      canonicalize_key (key.name);
       if (walk_ancestors)
        do
          {