diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor-page.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b1704500a9..47571ac91a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-03-15 JP Rosevear <jpr@ximian.com> + + * gui/dialogs/comp-editor-page.c (comp_editor_page_fill_widgets): + use right cast macro + 2004-03-15 JP Rosevear <jpr@ximian.com> * Rename e-cal-view to e-calendar-view and fix includes diff --git a/calendar/gui/dialogs/comp-editor-page.c b/calendar/gui/dialogs/comp-editor-page.c index e2187af06c..0869d67fb9 100644 --- a/calendar/gui/dialogs/comp-editor-page.c +++ b/calendar/gui/dialogs/comp-editor-page.c @@ -237,7 +237,7 @@ comp_editor_page_focus_main_widget (CompEditorPage *page) gboolean comp_editor_page_fill_widgets (CompEditorPage *page, ECalComponent *comp) { - g_return_val_if_fail (COMP_IS_EDITOR_PAGE (page), FALSE); + g_return_val_if_fail (IS_COMP_EDITOR_PAGE (page), FALSE); g_return_val_if_fail (E_IS_CAL_COMPONENT (comp), FALSE); g_assert (CLASS (page)->fill_widgets != NULL); |