diff options
author | Milan Crha <mcrha@redhat.com> | 2010-10-06 16:07:56 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-10-06 16:07:56 +0800 |
commit | a051d7ea7ee3066a0492584e45967a3daa0fb15b (patch) | |
tree | d2aa33f55767fccb4ed44cb148decffd196c66b4 /modules/calendar/e-cal-shell-view-taskpad.c | |
parent | bba40f1d2ea8d844b6fecdf77cf69fef93ff7217 (diff) | |
download | gsoc2013-evolution-a051d7ea7ee3066a0492584e45967a3daa0fb15b.tar.gz gsoc2013-evolution-a051d7ea7ee3066a0492584e45967a3daa0fb15b.tar.zst gsoc2013-evolution-a051d7ea7ee3066a0492584e45967a3daa0fb15b.zip |
Calendar's "Open Web Page" actions doesn't work
Diffstat (limited to 'modules/calendar/e-cal-shell-view-taskpad.c')
-rw-r--r-- | modules/calendar/e-cal-shell-view-taskpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-view-taskpad.c b/modules/calendar/e-cal-shell-view-taskpad.c index a00e630afd..b1eb390616 100644 --- a/modules/calendar/e-cal-shell-view-taskpad.c +++ b/modules/calendar/e-cal-shell-view-taskpad.c @@ -206,7 +206,7 @@ action_calendar_taskpad_open_url_cb (GtkAction *action, /* XXX We only open the URI of the first selected task. */ prop = icalcomponent_get_first_property ( comp_data->icalcomp, ICAL_URL_PROPERTY); - g_return_if_fail (prop == NULL); + g_return_if_fail (prop != NULL); uri = icalproperty_get_url (prop); e_show_uri (GTK_WINDOW (shell_window), uri); |