aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-01-24 06:23:18 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-01-24 06:23:18 +0800
commitd60bd882b5945a44c029b6a4cd98527a09899090 (patch)
tree1ffe6699cae6067c71c3b76cb220435fcd9d4c7b
parent4eb4ae3be83fcc187ac0ca3bd104a14ceeb0786f (diff)
downloadgsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar.gz
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar.bz2
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar.lz
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar.xz
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.tar.zst
gsoc2013-evolution-d60bd882b5945a44c029b6a4cd98527a09899090.zip
Pass a NULL @icon to
* gui/component/addressbook-component.c (create_component): Pass a NULL @icon to `evolution_shell_component_add_user_creatable_item()'. svn path=/trunk/; revision=15439
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/addressbook-component.c8
2 files changed, 12 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index f43606b910..4ae0f80939 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
2002-01-23 Ettore Perazzoli <ettore@ximian.com>
+ * gui/component/addressbook-component.c (create_component): Pass a
+ NULL @icon to
+ `evolution_shell_component_add_user_creatable_item()'.
+
+2002-01-23 Ettore Perazzoli <ettore@ximian.com>
+
* gui/contact-editor/e-contact-editor-address.c: #include
<locale.h>.
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index b1815dc794..d214fe6199 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -523,8 +523,12 @@ create_component (void)
bonobo_object_add_interface (BONOBO_OBJECT (shell_component),
BONOBO_OBJECT (destination_interface));
- evolution_shell_component_add_user_creatable_item (shell_component, "contact", _("New Contact"), _("New _Contact"), 'c');
- evolution_shell_component_add_user_creatable_item (shell_component, "contact_list", _("New Contact List"), _("New Contact _List"), 'l');
+ evolution_shell_component_add_user_creatable_item (shell_component, "contact",
+ _("New Contact"), _("New _Contact"), 'c',
+ NULL);
+ evolution_shell_component_add_user_creatable_item (shell_component, "contact_list",
+ _("New Contact List"), _("New Contact _List"), 'l',
+ NULL);
gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set",
GTK_SIGNAL_FUNC (owner_set_cb), NULL);