libpurple/protocols/mxit/mxit.c

branch
soc.2013.gobjectification.plugins
changeset 36642
b8ba53daa445
parent 36638
5f6dcd83e8c1
child 36653
4084c34c051d
--- a/libpurple/protocols/mxit/mxit.c	Sun Sep 01 19:15:56 2013 +0530
+++ b/libpurple/protocols/mxit/mxit.c	Sun Sep 01 22:38:16 2013 +0530
@@ -828,6 +828,8 @@
 static PurplePluginInfo *
 plugin_query( GError **error )
 {
+	const gchar * const authors[] = MXIT_PLUGIN_AUTHORS;
+
 	return purple_plugin_info_new(
 		"id",			MXIT_PLUGIN_ID,			/* plugin id (must be unique) */
 		"name",			MXIT_PLUGIN_NAME,		/* plugin name (this will be displayed in the UI) */
@@ -835,7 +837,7 @@
 		"category",		MXIT_PLUGIN_CATEGORY,	/* category of the plugin */
 		"summary",		MXIT_PLUGIN_SUMMARY,	/* short summary of the plugin */
 		"description",	MXIT_PLUGIN_DESC,		/* description of the plugin (can be long) */
-		"author",		MXIT_PLUGIN_AUTHOR,		/* plugin author name and email address */
+		"authors",		authors,				/* plugin authors' name and email addresses */
 		"website",		MXIT_PLUGIN_WWW,		/* plugin website (to find new versions and reporting of bugs) */
 		"abi-version",	PURPLE_ABI_VERSION,		/* ABI version required by the plugin */
 		"flags",        GPLUGIN_PLUGIN_INFO_FLAGS_INTERNAL |

mercurial