Removed is_refcounted and GBoxedInitFunc from

2001-09-10  Alex Larsson  <alexl@redhat.com>

	* gobject/gboxed.[ch]:
	* gobject/gsourceclosure.c:
	Removed is_refcounted and GBoxedInitFunc from
	g_boxed_type_register_static().
This commit is contained in:
Alex Larsson
2001-09-10 16:48:42 +00:00
committed by Alexander Larsson
parent 16fc3b22c0
commit ae2c2ca6c3
11 changed files with 66 additions and 43 deletions

View File

@@ -31,10 +31,8 @@ g_io_channel_get_type (void)
if (our_type == 0)
our_type = g_boxed_type_register_static ("GIOChannel",
NULL,
(GBoxedCopyFunc) g_io_channel_ref,
(GBoxedFreeFunc) g_io_channel_unref,
FALSE);
(GBoxedFreeFunc) g_io_channel_unref);
return our_type;
}