diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-25 03:03:41 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-25 03:03:41 +0800 |
commit | 483c3d3ffc0addb346611c0a544f214784e349b1 (patch) | |
tree | 874d79b9b9af67eafa5c9e23edf15ff00bbd3837 /calendar/gui/gncal-todo.c | |
parent | d397b9d2ce3d4fa076c9f6af98157c7ea92f9752 (diff) | |
download | gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar.gz gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar.bz2 gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar.lz gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar.xz gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.tar.zst gsoc2013-evolution-483c3d3ffc0addb346611c0a544f214784e349b1.zip |
Fixed some warnings.
2000-08-24 Christopher James Lahey <clahey@helixcode.com>
* gui/calendar-commands.c, gui/e-day-view.c, gui/e-week-view.c,
gui/event-editor.c, gui/gncal-todo.c, gui/gnome-cal.c, gui/prop.c:
Fixed some warnings.
svn path=/trunk/; revision=5009
Diffstat (limited to 'calendar/gui/gncal-todo.c')
-rw-r--r-- | calendar/gui/gncal-todo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c index a79d39363c..44df93832a 100644 --- a/calendar/gui/gncal-todo.c +++ b/calendar/gui/gncal-todo.c @@ -249,7 +249,9 @@ gncal_todo_edit (CalClient *client, CalComponent *comp) gtk_text_set_editable (GTK_TEXT (comment_text), TRUE); gtk_text_set_word_wrap( GTK_TEXT(comment_text), TRUE); gtk_text_freeze(GTK_TEXT(comment_text)); +#ifndef NO_WARNINGS #warning "FIX ME" +#endif /* Need to handle multiple comments */ cal_component_get_comment_list (comp, &l); if (l) { @@ -929,7 +931,9 @@ gncal_todo_update (GncalTodo *todo, CalComponent *comp, int flags) insert_in_clist (todo, comp); gtk_object_unref (GTK_OBJECT (comp)); } +#ifndef NO_WARNINGS #warning "FIX ME" +#endif /* else? */ g_free (uid); } |