diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-11-19 11:40:53 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-11-19 11:40:53 +0800 |
commit | 56291fc3f5bde706004f1cc9e200fc7bd7ee8462 (patch) | |
tree | 6feb53382c08cd5dfe2d5e3ef19394d292a49b0c /a11y | |
parent | 8425d8bbe6359a1baae04f569864f72d34144b5c (diff) | |
download | gsoc2013-evolution-56291fc3f5bde706004f1cc9e200fc7bd7ee8462.tar.gz gsoc2013-evolution-56291fc3f5bde706004f1cc9e200fc7bd7ee8462.tar.zst gsoc2013-evolution-56291fc3f5bde706004f1cc9e200fc7bd7ee8462.zip |
Patch from Li Yuan <li.yuan@sun.com> ** Fix for bug #560329 (Fix the signature of the 'children-changed' signal emission).
svn path=/trunk/; revision=36797
Diffstat (limited to 'a11y')
-rw-r--r-- | a11y/ChangeLog | 7 | ||||
-rw-r--r-- | a11y/calendar/ea-cal-view.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/a11y/ChangeLog b/a11y/ChangeLog index a5395fff94..da2c393fa1 100644 --- a/a11y/ChangeLog +++ b/a11y/ChangeLog @@ -1,3 +1,10 @@ +2008-11-19 Li Yuan <li.yuan@sun.com> + + ** Fix for bug #560329 + + * calendar/ea-cal-view.c (idle_dates_changed): Fix the signature of + the "children-changed" signal emission. + 2008-09-24 Sankar P <psankar@novell.com> License Changes diff --git a/a11y/calendar/ea-cal-view.c b/a11y/calendar/ea-cal-view.c index 28410385a6..e184b919b9 100644 --- a/a11y/calendar/ea-cal-view.c +++ b/a11y/calendar/ea-cal-view.c @@ -277,7 +277,7 @@ idle_dates_changed (gpointer data) } g_object_notify (G_OBJECT (ea_cal_view), "accessible-name"); g_signal_emit_by_name (ea_cal_view, "visible_data_changed"); - g_signal_emit_by_name (ea_cal_view, "children_changed", NULL); + g_signal_emit_by_name (ea_cal_view, "children_changed", NULL, NULL, NULL); #ifdef ACC_DEBUG printf ("AccDebug: cal view date changed\n"); #endif |