+2008-06-10 14:06:34 Tim Janik <timj@imendio.com>
+
+ * gobject/tmpl/gtype.sgml: fixed documentation regarding type checking
+ macros that do and do not issue warnings.
+
2008-05-28 Matthias Clasen <mclasen@redhat.com>
* glib/glib-docs.sgml:
<!-- ##### MACRO G_TYPE_CHECK_INSTANCE ##### -->
<para>
Returns %TRUE if @instance is a valid #GTypeInstance structure,
-otherwise emits a warning and returns %FALSE.
+otherwise issues a warning and returns %FALSE.
<para>
</para>
This macro should only be used in type implementations.
<!-- ##### MACRO G_TYPE_CHECK_INSTANCE_CAST ##### -->
<para>
Checks that @instance is an instance of the type identified by @g_type
-and emits a warning if this is not the case. Returns @instance casted
+and issues a warning if this is not the case. Returns @instance casted
to a pointer to @c_type.
</para>
<para>
<!-- ##### MACRO G_TYPE_CHECK_INSTANCE_TYPE ##### -->
<para>
Returns %TRUE if @instance is an instance of the type identified by @g_type.
-Otherwise emits a warning and returns %FALSE.
+Otherwise returns %FALSE.
</para>
<para>
This macro should only be used in type implementations.
<!-- ##### MACRO G_TYPE_CHECK_CLASS_CAST ##### -->
<para>
Checks that @g_class is a class structure of the type identified by @g_type
-and emits a warning if this is not the case. Returns @g_class casted
+and issues a warning if this is not the case. Returns @g_class casted
to a pointer to @c_type.
</para>
<para>
<!-- ##### MACRO G_TYPE_CHECK_CLASS_TYPE ##### -->
<para>
Returns %TRUE if @g_class is a class structure of the type identified by
-@g_type. Otherwise emits a warning and returns %FALSE.
+@g_type. Otherwise returns %FALSE.
</para>
<para>
This macro should only be used in type implementations.