Update of /cvsroot/easycalc/easycalc/mlib
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19764/mlib
Modified Files:
txtask.c
Log Message:
Replace calls to FrmAlert(altCompute) ("Error while computing") with call to
alertErrorMessage() stating the real error where possible.
Index: txtask.c
===================================================================
RCS file: /cvsroot/easycalc/easycalc/mlib/txtask.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** txtask.c 12 Sep 2006 19:40:56 -0000 1.5
--- txtask.c 16 Sep 2006 23:30:58 -0000 1.6
***************
*** 27,30 ****
--- 27,31 ----
#include "calcrsc.h"
#include "konvert.h"
+ #include "calc.h"
#include "funcs.h"
#include "display.h"
***************
*** 100,104 ****
}
if (err)
! FrmAlert(altCompute);
else {
res = true;
--- 101,105 ----
}
if (err)
! alertErrorMessage(err);
else {
res = true;
|