Change C++ comments for FIXME's to C comments. (Patch from Andres Salomon)
authorOwen Taylor <otaylor@redhat.com>
Wed, 18 Apr 2001 13:47:59 +0000 (13:47 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Wed, 18 Apr 2001 13:47:59 +0000 (13:47 +0000)
Wed Apr 18 09:46:56 2001  Owen Taylor  <otaylor@redhat.com>

* gobject.c gsignal.c: Change C++ comments for FIXME's to
        C comments. (Patch from Andres Salomon)

gobject/ChangeLog
gobject/gsignal.c
gobject/gtype.c

index dd73b5c..ad579b6 100644 (file)
@@ -1,3 +1,8 @@
+Wed Apr 18 09:46:56 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gobject.c gsignal.c: Change C++ comments for FIXME's to
+       C comments. (Patch from Andres Salomon)
+
 2001-04-14  Hans Breuer  <hans@breuer.org>
 
        * gobject.def : updated
index 6043210..845a955 100644 (file)
@@ -1066,7 +1066,7 @@ g_signal_newv (const gchar       *signal_name,
     g_return_val_if_fail (accu_data == NULL, 0);
 
   name = g_strdup (signal_name);
-  g_strdelimit (name, G_STR_DELIMITERS ":^", '_');  // FIXME do character checks like for types
+  g_strdelimit (name, G_STR_DELIMITERS ":^", '_');  /* FIXME do character checks like for types */
   
   G_LOCK (g_signal_mutex);
   
index 8753059..f1d3dac 100644 (file)
@@ -1354,7 +1354,7 @@ g_type_free_instance (GTypeInstance *instance)
     }
   
   instance->g_class = NULL;
-  memset (instance, 0xaa, node->data->instance.instance_size); // FIXME: debugging hack
+  memset (instance, 0xaa, node->data->instance.instance_size); /* FIXME: debugging hack */
   if (node->data->instance.n_preallocs)
     {
       G_WRITE_LOCK (&type_rw_lock);