diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-09 05:26:24 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-09 05:26:24 +0800 |
commit | d65526d2708c57078b63e557530a715aa2932052 (patch) | |
tree | 6eceab00ebc414ff09170ebc8cc914c9e34361f2 /addressbook/backend | |
parent | 4294cdc1edfaa7adcc6f0d86a5f6d2ebe32f52ad (diff) | |
download | gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar.gz gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar.bz2 gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar.lz gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar.xz gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.tar.zst gsoc2013-evolution-d65526d2708c57078b63e557530a715aa2932052.zip |
Fixed some formatting.
2000-12-08 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card.c: Fixed some formatting.
* contact-editor/e-contact-editor-categories.h: Removed an
unneeded #include.
* gui/widgets/e-addressbook-view.c: Connect to the signals on the
ETable instead of the ETableScrolled.
svn path=/trunk/; revision=6872
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/ebook/e-card.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index 643644ee31..ddbfb5453a 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -1577,15 +1577,15 @@ e_card_get_arg (GtkObject *object, GtkArg *arg, guint arg_id) case ARG_PHONE: if (!card->phone) card->phone = e_list_new((EListCopyFunc) e_card_phone_copy, - (EListFreeFunc) e_card_phone_free, - NULL); + (EListFreeFunc) e_card_phone_free, + NULL); GTK_VALUE_OBJECT(*arg) = GTK_OBJECT(card->phone); break; case ARG_EMAIL: if (!card->email) card->email = e_list_new((EListCopyFunc) g_strdup, - (EListFreeFunc) g_free, - NULL); + (EListFreeFunc) g_free, + NULL); GTK_VALUE_OBJECT(*arg) = GTK_OBJECT(card->email); break; case ARG_CATEGORIES: |