diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-09-30 18:21:19 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-09-30 18:21:19 +0800 |
commit | 6d3a5db30b2408177fa38b27f2864a5961833a5d (patch) | |
tree | 02388a7d19879186c696803102792c4f4145a820 /calendar | |
parent | c7d4c4676838f9ff67686eee55d5b605d0ace431 (diff) | |
download | gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar.gz gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar.bz2 gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar.lz gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar.xz gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.tar.zst gsoc2013-evolution-6d3a5db30b2408177fa38b27f2864a5961833a5d.zip |
Fixes #270036
svn path=/trunk/; revision=30434
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/dialogs/cal-prefs-dialog.c | 5 |
2 files changed, 12 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 09ca8ed37c..0433ab8c79 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2005-08-30 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #270036 + (init_widgets): added the missing signal handler when + the list selection changes. + + Reworked the patch from Dinesh Layek <ldinesh@novell.com> + 2005-08-29 Chenthill Palanisamy <pchenthill@novell.com> * gui/e-calendar-table.c (e_calendar_table_open_task): Set the diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c index e22a6aac0a..e2e57643b9 100644 --- a/calendar/gui/dialogs/cal-prefs-dialog.c +++ b/calendar/gui/dialogs/cal-prefs-dialog.c @@ -596,6 +596,9 @@ init_widgets (DialogData *dialog_data) g_signal_connect (dialog_data->url_list, "row-activated", G_CALLBACK (cal_prefs_dialog_url_list_double_click), dialog_data); + g_signal_connect (selection, "changed", + G_CALLBACK (cal_prefs_dialog_url_list_change), + dialog_data); } /* Sets the color in a color picker from an X color spec */ @@ -833,7 +836,7 @@ cal_prefs_dialog_url_list_double_click (GtkTreeView *treeview, { cal_prefs_dialog_url_edit_clicked (NULL, dialog_data); } - + static void cal_prefs_dialog_url_list_change (GtkTreeSelection *selection, DialogData *dialog_data) |