diff options
author | JP Rosevear <jpr@ximian.com> | 2004-03-16 00:56:12 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-03-16 00:56:12 +0800 |
commit | e7743c847dccdf0673a791fc797f06f47e53167a (patch) | |
tree | 3d3d9152301a9d4a7bfffd509f25a1f4ce0e4a63 /calendar | |
parent | a5d6aa7b99fbf6680395668fa294009381fa6fb4 (diff) | |
download | gsoc2013-evolution-e7743c847dccdf0673a791fc797f06f47e53167a.tar.gz gsoc2013-evolution-e7743c847dccdf0673a791fc797f06f47e53167a.tar.zst gsoc2013-evolution-e7743c847dccdf0673a791fc797f06f47e53167a.zip |
use right cast macro
2004-03-15 JP Rosevear <jpr@ximian.com>
* gui/dialogs/comp-editor-page.c (comp_editor_page_fill_widgets):
use right cast macro
svn path=/trunk/; revision=25077
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); |