aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-editor-address.h
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-04-24 19:35:59 +0800
committerMilan Crha <mcrha@redhat.com>2009-04-24 19:35:59 +0800
commitcd26e8a609574335e684df2f1eef55f2a11c2bdf (patch)
tree1743fe512f474aa39d09e1f5c5dc0f89f0a5fda6 /addressbook/gui/contact-editor/e-contact-editor-address.h
parent8a072ffc7c0ddcde472877a51ace0bb14f86fb0a (diff)
downloadgsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar.gz
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar.bz2
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar.lz
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar.xz
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.tar.zst
gsoc2013-evolution-cd26e8a609574335e684df2f1eef55f2a11c2bdf.zip
Remove unused files
I forgot to remove unused files from sources in the commit for GN-bug #572348
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor-address.h')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor-address.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor-address.h b/addressbook/gui/contact-editor/e-contact-editor-address.h
deleted file mode 100644
index 101e672c5a..0000000000
--- a/addressbook/gui/contact-editor/e-contact-editor-address.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with the program; if not, see <http://www.gnu.org/licenses/>
- *
- *
- * Authors:
- * Chris Lahey <clahey@ximian.com>
- *
- * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
- *
- */
-
-#ifndef __E_CONTACT_EDITOR_ADDRESS_H__
-#define __E_CONTACT_EDITOR_ADDRESS_H__
-
-#include <gtk/gtk.h>
-#include <glade/glade.h>
-#include <libebook/e-contact.h>
-
-G_BEGIN_DECLS
-
-/* EContactEditorAddress - A dialog displaying information about a contact.
- *
- * The following arguments are available:
- *
- * name type read/write description
- * --------------------------------------------------------------------------------
- * name ECardName * RW The card currently being edited. Returns a copy.
- */
-
-#define E_TYPE_CONTACT_EDITOR_ADDRESS (e_contact_editor_address_get_type ())
-#define E_CONTACT_EDITOR_ADDRESS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CONTACT_EDITOR_ADDRESS, EContactEditorAddress))
-#define E_CONTACT_EDITOR_ADDRESS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CONTACT_EDITOR_ADDRESS, EContactEditorAddressClass))
-#define E_IS_CONTACT_EDITOR_ADDRESS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CONTACT_EDITOR_ADDRESS))
-#define E_IS_CONTACT_EDITOR_ADDRESS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_CONTACT_EDITOR_ADDRESS))
-
-
-typedef struct _EContactEditorAddress EContactEditorAddress;
-typedef struct _EContactEditorAddressClass EContactEditorAddressClass;
-
-struct _EContactEditorAddress
-{
- GtkDialog parent;
-
- /* item specific fields */
- EContactAddress *address;
-
- guint editable : 1;
-
- GladeXML *gui;
-};
-
-struct _EContactEditorAddressClass
-{
- GtkDialogClass parent_class;
-};
-
-
-GtkWidget *e_contact_editor_address_new (const EContactAddress *address);
-GType e_contact_editor_address_get_type (void);
-
-G_END_DECLS
-
-#endif /* __E_CONTACT_EDITOR_ADDRESS_H__ */