aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-09 05:26:24 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-09 05:26:24 +0800
commitd65526d2708c57078b63e557530a715aa2932052 (patch)
tree6eceab00ebc414ff09170ebc8cc914c9e34361f2 /addressbook/gui/widgets
parent4294cdc1edfaa7adcc6f0d86a5f6d2ebe32f52ad (diff)
downloadgsoc2013-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/gui/widgets')
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index 7f73ab42db..d5beb6e30b 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -554,9 +554,9 @@ create_table_view (EAddressbookView *view)
view->object = GTK_OBJECT(model);
view->widget = table;
- gtk_signal_connect(GTK_OBJECT(table), "double_click",
+ gtk_signal_connect(GTK_OBJECT(e_table_scrolled_get_table(E_TABLE_SCROLLED(table))), "double_click",
GTK_SIGNAL_FUNC(table_double_click), view);
- gtk_signal_connect(GTK_OBJECT(table), "right_click",
+ gtk_signal_connect(GTK_OBJECT(e_table_scrolled_get_table(E_TABLE_SCROLLED(table))), "right_click",
GTK_SIGNAL_FUNC(table_right_click), view);
gtk_table_attach(GTK_TABLE(view), table,