From 991702494946bdfcea958c6bd421b51867ea7545 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Tue, 15 Dec 2009 21:15:41 +0100 Subject: [PATCH] G_DEFINE_INTERFACE_* documentation is not generated Fix the documentation: Replace "@Since:" with "Since:" https://bugzilla.gnome.org/show_bug.cgi?id=604645 --- gobject/gtype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gobject/gtype.h b/gobject/gtype.h index c5f7898..429a2b7 100644 --- a/gobject/gtype.h +++ b/gobject/gtype.h @@ -1359,7 +1359,7 @@ gpointer g_type_instance_get_private (GTypeInstance *instance, * name t_n ## _default_init, and the interface * structure to have the name TN ## Interface. * - * @Since: 2.20 + * Since: 2.20 */ #define G_DEFINE_INTERFACE(TN, t_n, T_P) G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, ;) @@ -1378,7 +1378,7 @@ gpointer g_type_instance_get_private (GTypeInstance *instance, * G_DEFINE_TYPE_EXTENDED() for a similar example using * G_DEFINE_TYPE_WITH_CODE(). * - * @Since: 2.20 + * Since: 2.20 */ #define G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TN, t_n, T_P) {_C_;} _G_DEFINE_INTERFACE_EXTENDED_END() -- 2.7.4