Re: [evolution-patches] patch to fix a crash problem
From: Harry Lu <Harry Lu Sun COM>
To: JP Rosevear <jpr novell com>
Cc: Li Yuan <Li Yuan Sun COM>, notzed ximian com, rodrigo novell com, evolution-patches ximian com
Subject: Re: [evolution-patches] patch to fix a crash problem
Date: Fri, 29 Oct 2004 17:58:07 +0800
Patch committed into CVS with the if (n_events == 1) changes.
Thanks for review.
Harry
JP Rosevear wrote:
On Thu, 2004-10-28 at 12:38 +0800, Li Yuan wrote:
I changed the name, attach is the new patch.
Looks fine, when I compiled though I noticed an unrelated error, it
looks like in ea_day_view_get_name and ea_week_view_get_name do:
if (n_events = 1)
when they should do
if (n_events == 1)
-JP