diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-03 20:06:34 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-03 20:06:34 +0800 |
commit | 8228c1b611c46ccc6b8069b1e9a9f442f468e342 (patch) | |
tree | cfd51f80c77766f7567e36c5d82f7c96e013f862 /e-util | |
parent | ebf5dd871742c383a01331c4fdb64a1b5d51d33c (diff) | |
download | gsoc2013-evolution-8228c1b611c46ccc6b8069b1e9a9f442f468e342.tar.gz gsoc2013-evolution-8228c1b611c46ccc6b8069b1e9a9f442f468e342.tar.zst gsoc2013-evolution-8228c1b611c46ccc6b8069b1e9a9f442f468e342.zip |
** Remove dead files from source control. The dates below indicate when
2007-11-03 Matthew Barnes <mbarnes@redhat.com>
** Remove dead files from source control. The dates below
indicate when the file was removed from Makefile.am.
Fixes part of bug #478704.
* addressbook/printing/e-contact-print-envelope.c (Apr 2007)
* addressbook/printing/e-contact-print-envelope.h (Apr 2007)
* addressbook/tools/evolution-addressbook-abuse.c (May 2004)
* addressbook/tools/evolution-addressbook-import.c (no history)
* calendar/gui/dialogs/calendar-setup.glade (Nov 2004)
* calendar/gui/dialogs/meeting-page.etspec (Sep 2003)
* calendar/gui/dialogs/new-calendar.glade (Jan 2003)
* calendar/gui/dialogs/new-task-list.glade (Jan 2004)
* calendar/gui/dialogs/url-editor-dialog.c (Dec 2005)
* calendar/gui/dialogs/url-editor-dialog.glade (Dec 2005)
* calendar/gui/dialogs/url-editor-dialog.h (Dec 2005)
* calendar/gui/e-pub-utils.c (Dec 2005)
* calendar/gui/e-pub-utils.h (Dec 2005)
* calendar/gui/gnome-calendar-conduit.png (May 2000)
* e-util/e-categories-master-list-wombat.c (Jun 2005)
* e-util/e-categories-master-list-wombat.h (Jun 2005)
* tools/evolution-launch-composer.c (Jun 2003)
* configure.in:
Remove plugins/mail-remote/Makefile from AC_OUTPUT.
Fixes a distcheck error.
* po/POTFILES.in: Remove files for mail-remote plugin.
svn path=/trunk/; revision=34487
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 9 | ||||
-rw-r--r-- | e-util/e-categories-master-list-wombat.c | 183 | ||||
-rw-r--r-- | e-util/e-categories-master-list-wombat.h | 31 |
3 files changed, 9 insertions, 214 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index dbf484b09f..d32f66f2f9 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,12 @@ +2007-11-03 Matthew Barnes <mbarnes@redhat.com> + + ** Remove dead files from source control. The dates below + indicate when the file was removed from Makefile.am. + Fixes part of bug #478704. + + * e-categories-master-list-wombat.c (Jun 2005) + * e-categories-master-list-wombat.h (Jun 2005) + 2007-10-26 Sankar P <psankar@novell.com> ** Fix for bug #461272 diff --git a/e-util/e-categories-master-list-wombat.c b/e-util/e-categories-master-list-wombat.c deleted file mode 100644 index 9e45199877..0000000000 --- a/e-util/e-categories-master-list-wombat.c +++ /dev/null @@ -1,183 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * e-categories-master-list.c: the master list of categories. - * - * Authors: - * Chris Lahey <clahey@ximian.com> - * - * (C) 1999, 2000 Ximian, Inc. - */ -#include <config.h> - -#include "e-categories-master-list-wombat.h" -#include "e-categories-config.h" -#include "e-config-listener.h" - -#include <libxml/tree.h> -#include <libxml/parser.h> - -#define PARENT_TYPE e_categories_master_list_array_get_type () - -#define d(x) - -struct _ECategoriesMasterListWombatPriv { - EConfigListener *listener; - guint listener_id; -}; - -static ECategoriesMasterListArrayClass *parent_class; - -static void -ecmlw_load (ECategoriesMasterListWombat *ecmlw) -{ - char *string; - gboolean def; - - string = e_config_listener_get_string_with_default (ecmlw->priv->listener, - "/apps/evolution/general/category_master_list", - NULL, - &def); - /* parse the XML string */ - if (!def) { - e_categories_master_list_array_from_string (E_CATEGORIES_MASTER_LIST_ARRAY (ecmlw), - string); - } - - d(g_print ("load: %s\n", string?string:"(nil)")); - - g_free (string); -} - -static void -ecmlw_save (ECategoriesMasterListWombat *ecmlw) -{ - char *string; - - string = e_categories_master_list_array_to_string (E_CATEGORIES_MASTER_LIST_ARRAY (ecmlw)); - - d(g_print ("save: %s\n", string)); - - e_config_listener_set_string (ecmlw->priv->listener, - "/apps/evolution/general/category_master_list", - string); - - g_free (string); -} - -/** - * ecmlw_commit: - * @ecml: the master list to remove from. - */ -static void -ecmlw_commit (ECategoriesMasterList *ecml) -{ - ECategoriesMasterListWombat *ecmlw = E_CATEGORIES_MASTER_LIST_WOMBAT (ecml); - - ((ECategoriesMasterListClass *) parent_class)->commit (ecml); - - ecmlw_save (ecmlw); -} - - -/** - * ecmlw_reset: - * @ecml: the master list to reset. - */ -static void -ecmlw_reset (ECategoriesMasterList *ecml) -{ - ECategoriesMasterListWombat *ecmlw = E_CATEGORIES_MASTER_LIST_WOMBAT (ecml); - - ((ECategoriesMasterListClass *) parent_class)->reset (ecml); - - ecmlw_save (ecmlw); -} - -static void -ecmlw_dispose (GObject *object) -{ - ECategoriesMasterListWombat *ecmlw = E_CATEGORIES_MASTER_LIST_WOMBAT (object); - - if (ecmlw->priv) { - /* remove the listener */ - g_signal_handler_disconnect (ecmlw->priv->listener, - ecmlw->priv->listener_id); - - g_object_unref (ecmlw->priv->listener); - - g_free (ecmlw->priv); - ecmlw->priv = NULL; - } - - if (G_OBJECT_CLASS (parent_class)->dispose) - (* G_OBJECT_CLASS (parent_class)->dispose) (object); -} - - -static void -ecmlw_class_init (GObjectClass *object_class) -{ - ECategoriesMasterListClass *ecml_class = E_CATEGORIES_MASTER_LIST_CLASS(object_class); - - parent_class = g_type_class_ref (PARENT_TYPE); - - ecml_class->commit = ecmlw_commit; - - ecml_class->reset = ecmlw_reset ; - - object_class->dispose = ecmlw_dispose; -} - -static void -property_change_cb (EConfigListener *listener, - char *key, - gpointer user_data) -{ - ecmlw_load (user_data); -} - -static void -ecmlw_init (ECategoriesMasterListWombat *ecmlw) -{ - ecmlw->priv = g_new (ECategoriesMasterListWombatPriv, 1); - ecmlw->priv->listener = e_config_listener_new (); - - /* add a listener */ - ecmlw->priv->listener_id = - g_signal_connect (ecmlw->priv->listener, - "key_changed", - G_CALLBACK (property_change_cb), - ecmlw); - - ecmlw_load (ecmlw); -} - -GType -e_categories_master_list_wombat_get_type (void) -{ - static GType type = 0; - - if (!type) { - static const GTypeInfo info = { - sizeof (ECategoriesMasterListWombatClass), - NULL, /* base_init */ - NULL, /* base_finalize */ - (GClassInitFunc) ecmlw_class_init, - NULL, /* class_finalize */ - NULL, /* class_data */ - sizeof (ECategoriesMasterListWombat), - 0, /* n_preallocs */ - (GInstanceInitFunc) ecmlw_init, - }; - - type = g_type_register_static (PARENT_TYPE, "ECategoriesMasterListWombat", &info, 0); - } - - return type; -} - -ECategoriesMasterList * -e_categories_master_list_wombat_new (void) -{ - return E_CATEGORIES_MASTER_LIST (g_object_new (E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT, NULL)); -} diff --git a/e-util/e-categories-master-list-wombat.h b/e-util/e-categories-master-list-wombat.h deleted file mode 100644 index bf951f9150..0000000000 --- a/e-util/e-categories-master-list-wombat.h +++ /dev/null @@ -1,31 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -#ifndef _E_CATEGORIES_MASTER_LIST_WOMBAT_H_ -#define _E_CATEGORIES_MASTER_LIST_WOMBAT_H_ - -#include <misc/e-categories-master-list-array.h> - -G_BEGIN_DECLS - -#define E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT (e_categories_master_list_wombat_get_type ()) -#define E_CATEGORIES_MASTER_LIST_WOMBAT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT, ECategoriesMasterListWombat)) -#define E_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT, ECategoriesMasterListWombatClass)) -#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT)) -#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT)) - -typedef struct _ECategoriesMasterListWombatPriv ECategoriesMasterListWombatPriv; - -typedef struct { - ECategoriesMasterListArray base; - ECategoriesMasterListWombatPriv *priv; -} ECategoriesMasterListWombat; - -typedef struct { - ECategoriesMasterListArrayClass parent_class; -} ECategoriesMasterListWombatClass; - -GType e_categories_master_list_wombat_get_type (void); -ECategoriesMasterList *e_categories_master_list_wombat_new (void); - -G_END_DECLS - -#endif /* _E_CATEGORIES_MASTER_LIST_WOMBAT_H_ */ |