Commited. Thanks. Michael.
On Sat, Oct 24, 2009 at 4:11 PM, Philip Nienhuis <[email protected]> wrote: > Hi, > > Here's another patch o __COM__.cc dealing with reading from Excel cells > containing results of erroneous operations (e.g. division by zero or > attempts to take the root of text strings). > I've chosen to treat those cells just like empty cells. > > This patch is combined with yesterday's patch about date formatted cells. > > Can the Windows package maintainer(s) apply this patch, please? > > Thanks, > > Philip > > > *** __COM__.old Wed Jun 24 21:36:14 2009 > --- __COM__.cc Fri Oct 23 23:59:39 2009 > *************** > *** 404,415 **** > --- 404,421 ---- > case VT_R8: > retval = octave_value(var->dblVal); > break; > + case VT_DATE: > + retval = octave_value(var->dblVal); > + break; > case VT_R4: > retval = octave_value(var->fltVal); > break; > case VT_EMPTY: > retval = octave_value(Matrix()); > break; > + case VT_ERROR: > + retval = octave_value(Matrix()); > + break; > default: > if (var->vt & VT_ARRAY) > { > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Octave-dev mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/octave-dev > > ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
