[anjuta] document-manager: Rename notify_ids variable
- From: Johannes Schmid <jhs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] document-manager: Rename notify_ids variable
- Date: Sun, 16 May 2010 12:53:14 +0000 (UTC)
commit 2af0df508abeb09adc3d00f8d6c5257b0c40017a
Author: Johannes Schmid <jhs gnome org>
Date: Sun May 16 14:44:51 2010 +0200
document-manager: Rename notify_ids variable
It should refer to gconf as it is actually using anjuta-preferences
plugins/document-manager/plugin.c | 12 ++++++------
plugins/document-manager/plugin.h | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/plugins/document-manager/plugin.c b/plugins/document-manager/plugin.c
index 0585b2e..afb8008 100644
--- a/plugins/document-manager/plugin.c
+++ b/plugins/document-manager/plugin.c
@@ -1625,8 +1625,8 @@ on_notify_timer (AnjutaPreferences* prefs,
#define REGISTER_NOTIFY(key, func, type) \
notify_id = anjuta_preferences_notify_add_##type (ep->prefs, \
key, func, ep, NULL); \
- ep->gconf_notify_ids = g_list_prepend (ep->gconf_notify_ids, \
- GUINT_TO_POINTER (notify_id));
+ ep->notify_ids = g_list_prepend (ep->notify_ids, \
+ GUINT_TO_POINTER (notify_id));
static void
prefs_init (DocmanPlugin *ep)
{
@@ -1644,15 +1644,15 @@ static void
prefs_finalize (DocmanPlugin *ep)
{
GList *node;
- node = ep->gconf_notify_ids;
+ node = ep->notify_ids;
while (node)
{
anjuta_preferences_notify_remove (ep->prefs,
GPOINTER_TO_UINT (node->data));
node = g_list_next (node);
}
- g_list_free (ep->gconf_notify_ids);
- ep->gconf_notify_ids = NULL;
+ g_list_free (ep->notify_ids);
+ ep->notify_ids = NULL;
}
static gboolean
@@ -1862,7 +1862,7 @@ docman_plugin_instance_init (GObject *obj)
DocmanPlugin *plugin = ANJUTA_PLUGIN_DOCMAN (obj);
plugin->uiid = 0;
plugin->g_tabbing = FALSE;
- plugin->gconf_notify_ids = NULL;
+ plugin->notify_ids = NULL;
plugin->support_plugins = NULL;
}
diff --git a/plugins/document-manager/plugin.h b/plugins/document-manager/plugin.h
index aafe948..6d2f787 100644
--- a/plugins/document-manager/plugin.h
+++ b/plugins/document-manager/plugin.h
@@ -39,7 +39,7 @@ struct _DocmanPlugin{
/* Timer interval in mins */
gint autosave_it;
- GList *gconf_notify_ids;
+ GList *notify_ids;
/* Support plugins */
GList *support_plugins;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]