aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2007-10-26 21:17:13 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-10-26 21:17:13 +0800
commit7384a973eab03ef037ef359e6b4e27caae395210 (patch)
tree83ecce10478f8fcd14d39aa86ff11b4308872036 /calendar
parent7517f413700c53fb8d6ae7e43957435060fd714f (diff)
downloadgsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar.gz
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar.bz2
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar.lz
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar.xz
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.tar.zst
gsoc2013-evolution-7384a973eab03ef037ef359e6b4e27caae395210.zip
** Fix for bug #417999
2007-10-26 Milan Crha <mcrha@redhat.com> ** Fix for bug #417999 * gui/dialogs/task-page.c: (init_widgets): Use "changed" signal, instead of old "source_changed" to notify change of selected source. svn path=/trunk/; revision=34436
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/dialogs/task-page.c3
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index c86934133f..2feec41ec6 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2007-10-26 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #417999
+
+ * gui/dialogs/task-page.c: (init_widgets): Use "changed" signal,
+ instead of old "source_changed" to notify change of selected source.
+
2007-10-26 Matthew Barnes <mbarnes@redhat.com>
* conduits/calendar/calendar-conduit.c (local_record_to_pilot_record):
diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c
index eb52dd1445..647005857c 100644
--- a/calendar/gui/dialogs/task-page.c
+++ b/calendar/gui/dialogs/task-page.c
@@ -1837,8 +1837,7 @@ init_widgets (TaskPage *tpage)
G_CALLBACK (categories_clicked_cb), tpage);
/* Source selector */
- g_signal_connect((priv->source_selector), "source_changed",
- G_CALLBACK (source_changed_cb), tpage);
+ g_signal_connect (priv->source_selector, "changed", G_CALLBACK (source_changed_cb), tpage);
/* Connect the default signal handler to use to make sure the "changed"
field gets set whenever a field is changed. */