diff options
author | Chris Toshok <toshok@ximian.com> | 2002-08-27 07:40:18 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-08-27 07:40:18 +0800 |
commit | e87d4d4b1f6bbab5cb6c9d5eef750efa1cc80c57 (patch) | |
tree | dbade3583373335adf174de35f86d5656b60d7cc /addressbook/gui/component | |
parent | 147fe9f099ebdc8e777b3d6709cc5d409903c3b1 (diff) | |
download | gsoc2013-evolution-e87d4d4b1f6bbab5cb6c9d5eef750efa1cc80c57.tar.gz gsoc2013-evolution-e87d4d4b1f6bbab5cb6c9d5eef750efa1cc80c57.tar.zst gsoc2013-evolution-e87d4d4b1f6bbab5cb6c9d5eef750efa1cc80c57.zip |
[ fixes #29446 ] searching_modify_func can be NULL (since we don't require
2002-08-26 Chris Toshok <toshok@ximian.com>
[ fixes #29446 ]
* gui/component/addressbook-config.c (scope_optionmenu_activated):
searching_modify_func can be NULL (since we don't require changes
to enable the "Next" button on this page when you create a
directory server.)
svn path=/trunk/; revision=17871
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 7682f815ab..3e9b342f40 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -725,7 +725,8 @@ scope_optionmenu_activated (GtkWidget *item, AddressbookSourceDialog *dialog) dialog->scope = g_list_index (gtk_container_children (GTK_CONTAINER (item->parent)), item); - dialog->searching_modify_func (item, dialog); + if (dialog->searching_modify_func) + dialog->searching_modify_func (item, dialog); } static void |