Change C++ comments for FIXME's to C comments. (Patch from Andres Salomon)

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)
This commit is contained in:
Owen Taylor 2001-04-18 13:47:59 +00:00 committed by Owen Taylor
parent 9088d6460b
commit 9abb307200
3 changed files with 7 additions and 2 deletions

View 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

View 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);

View 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);