aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2001-08-10 09:04:44 +0800
committerAnna Dirks <anna@src.gnome.org>2001-08-10 09:04:44 +0800
commit518d8af11bdadf0245735ca632e9ec1e0e50a533 (patch)
tree720e7101db74d3c344e2f939e779f9c058bad5e8 /addressbook/gui/component/select-names/e-select-names.c
parent70d5ead8bd5b964a2b3400ac23f0b14954c05005 (diff)
downloadgsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar.gz
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar.bz2
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar.lz
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar.xz
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.tar.zst
gsoc2013-evolution-518d8af11bdadf0245735ca632e9ec1e0e50a533.zip
redesigned this dialog to fix bug #6815.
2001-08-09 Anna Marie Dirks <anna@ximian.com> * gui/component/select-names/select-names.glade: redesigned this dialog to fix bug #6815. *gui/component/select-names/e-select-names.c: connected the widgets (or one of them anyway. clahey did the rest) for my new and lovely glade file. svn path=/trunk/; revision=11862
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 23e660f9ee..256ac3b03e 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -457,7 +457,7 @@ static void
e_select_names_init (ESelectNames *e_select_names)
{
GladeXML *gui;
- GtkWidget *widget;
+ GtkWidget *widget, *button;
gui = glade_xml_new (EVOLUTION_GLADEDIR "/select-names.glade", NULL);
e_select_names->gui = gui;
@@ -504,6 +504,11 @@ e_select_names_init (ESelectNames *e_select_names)
gtk_signal_connect(GTK_OBJECT(e_select_names->categories_entry), "changed",
GTK_SIGNAL_FUNC(update_query), e_select_names);
+ button = glade_xml_get_widget (gui, "button-find");
+ if (button)
+ gtk_signal_connect(GTK_OBJECT(button), "clicked",
+ GTK_SIGNAL_FUNC(update_query), e_select_names);
+
e_select_names->folders = g_hash_table_new(g_str_hash, g_str_equal);
e_select_names_hookup_shell_listener (e_select_names);