aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-quick-add.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-06 16:20:46 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-06 16:20:46 +0800
commit4d53826308a95d959a986b7b7cc57abf80e85862 (patch)
tree7ad0d3e7149359af775c0a2b068ebf1be8f99045 /addressbook/gui/contact-editor/e-contact-quick-add.c
parentd73b3bb496a3738d12442386231f3b2fa18967a6 (diff)
downloadgsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar.gz
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar.bz2
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar.lz
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar.xz
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.tar.zst
gsoc2013-evolution-4d53826308a95d959a986b7b7cc57abf80e85862.zip
ignore the marshal generated stuff.
2002-11-05 Chris Toshok <toshok@ximian.com> * gui/contact-editor/.cvsignore: ignore the marshal generated stuff. * gui/contact-editor/Makefile.am: typical port stuff. add marshaller generation foo, dist it... * gui/contact-editor/e-contact-editor-address.[ch]: Port to GObject/gnome2. * gui/contact-editor/e-contact-editor-fullname.c: Port to GObject/gnome2. * gui/contact-editor/e-contact-editor.c: Port to GObject/gnome2. * gui/contact-editor/e-contact-quick-add.c: Port to GObject/gnome2. * gui/contact-editor/e-contact-save-as.[ch]: Port to GObject/gnome2. * gui/contact-editor/test-editor.c: Port to GObject/gnome2. svn path=/trunk/; revision=18589
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-quick-add.c')
-rw-r--r--addressbook/gui/contact-editor/e-contact-quick-add.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.c b/addressbook/gui/contact-editor/e-contact-quick-add.c
index e8d623afb0..1476aecf5f 100644
--- a/addressbook/gui/contact-editor/e-contact-quick-add.c
+++ b/addressbook/gui/contact-editor/e-contact-quick-add.c
@@ -30,11 +30,9 @@
#include <gtk/gtkentry.h>
#include <gtk/gtklabel.h>
#include <gtk/gtktable.h>
-#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-app.h>
#include <libgnomeui/gnome-dialog.h>
-#include <libgnomeui/gnome-stock.h>
#include <gal/widgets/e-unicode.h>
#include <addressbook/gui/component/addressbook.h>
#include <addressbook/backend/ebook/e-book.h>
@@ -304,10 +302,8 @@ build_quick_add_dialog (QuickAdd *qa)
GNOME_STOCK_BUTTON_CANCEL,
NULL);
- gtk_signal_connect (GTK_OBJECT (dialog),
- "clicked",
- clicked_cb,
- qa);
+ g_signal_connect (dialog, "clicked",
+ G_CALLBACK (clicked_cb), qa);
qa->name_entry = gtk_entry_new ();
if (qa->name) {