[gnome-panel/wip/segeiger/reference-documentation: 2/4] libpanel-applet/panel-applet.h: Rename id to factory_id for factory macros
- From: Sebastian Geiger <segeiger src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-panel/wip/segeiger/reference-documentation: 2/4] libpanel-applet/panel-applet.h: Rename id to factory_id for factory macros
- Date: Mon, 24 Aug 2015 00:25:18 +0000 (UTC)
commit cce7650e54cd3305330f4cbcc3fec699b69ee687
Author: Sebastian Geiger <sbastig gmx net>
Date: Mon Aug 24 00:27:08 2015 +0200
libpanel-applet/panel-applet.h: Rename id to factory_id for factory macros
libpanel-applet/panel-applet.h | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libpanel-applet/panel-applet.h b/libpanel-applet/panel-applet.h
index 4efee48..dd6066e 100644
--- a/libpanel-applet/panel-applet.h
+++ b/libpanel-applet/panel-applet.h
@@ -200,7 +200,7 @@ int panel_applet_factory_setup_in_process (const gchar
/**
* PANEL_APPLET_OUT_PROCESS_FACTORY:
- * @id: identifier of an applet factory.
+ * @factory_id: identifier of an applet factory.
* @type: GType of the applet this factory creates.
* @callback: (scope call): a %PanelAppletFactoryCallback to be called
* when a new applet is created.
@@ -221,7 +221,7 @@ int panel_applet_factory_setup_in_process (const gchar
* It can only be used once, and is incompatible with the use of
* %PANEL_APPLET_IN_PROCESS_FACTORY and panel_applet_factory_main().
**/
-#define PANEL_APPLET_OUT_PROCESS_FACTORY(id, type, callback, data) \
+#define PANEL_APPLET_OUT_PROCESS_FACTORY(factory_id, type, callback, data) \
int main (int argc, char *argv []) \
{ \
GOptionContext *context; \
@@ -247,7 +247,7 @@ int main (int argc, char *argv []) \
\
gtk_init (&argc, &argv); \
\
- retval = panel_applet_factory_main (id, type, callback, data); \
+ retval = panel_applet_factory_main (factory_id, type, callback, data); \
g_option_context_free (context); \
\
return retval; \
@@ -255,7 +255,7 @@ int main (int argc, char *argv []) \
/**
* PANEL_APPLET_IN_PROCESS_FACTORY:
- * @id: identifier of an applet factory.
+ * @factory_id: identifier of an applet factory.
* @type: GType of the applet this factory creates.
* @callback: (scope call): a %PanelAppletFactoryCallback to be called
* when a new applet is created.
@@ -275,13 +275,13 @@ int main (int argc, char *argv []) \
* It can only be used once, and is incompatible with the use of
* %PANEL_APPLET_OUT_PROCESS_FACTORY and panel_applet_factory_main().
**/
-#define PANEL_APPLET_IN_PROCESS_FACTORY(id, type, callback, data) \
+#define PANEL_APPLET_IN_PROCESS_FACTORY(factory_id, type, callback, data) \
gboolean _panel_applet_shlib_factory (void); \
G_MODULE_EXPORT gint \
_panel_applet_shlib_factory (void) \
{ \
_PANEL_APPLET_SETUP_GETTEXT (FALSE); \
- return panel_applet_factory_setup_in_process (id, type, \
+ return panel_applet_factory_setup_in_process (factory_id, type, \
callback, data); \
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]