From: Mapi B. <ma...@us...> - 2009-07-05 20:53:40
|
Update of /cvsroot/easycalc/PPCport/core/mlib In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17375 Modified Files: calcDB.cpp display.cpp fp.cpp funcs.cpp funcs.h konvert.cpp stack.cpp Log Message: MathLib compatibility Index: display.cpp =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/mlib/display.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** display.cpp 24 Jun 2009 21:39:59 -0000 1.2 --- display.cpp 5 Jul 2009 20:53:37 -0000 1.3 *************** *** 35,39 **** #include "fp.h" #include "stack.h" ! #include "MathLib.h" TdispPrefs dispPrefs; --- 35,39 ---- #include "fp.h" #include "stack.h" ! #include "compat/MathLib.h" TdispPrefs dispPrefs; Index: funcs.cpp =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/mlib/funcs.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** funcs.cpp 24 Jun 2009 21:39:59 -0000 1.2 --- funcs.cpp 5 Jul 2009 20:53:37 -0000 1.3 *************** *** 36,40 **** #include "funcs.h" #include "calcDB.h" ! #include "MathLib.h" #include "stack.h" //#include "calc.h" --- 36,40 ---- #include "funcs.h" #include "calcDB.h" ! #include "compat/MathLib.h" #include "stack.h" //#include "calc.h" Index: stack.cpp =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/mlib/stack.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stack.cpp 24 Jun 2009 21:39:59 -0000 1.2 --- stack.cpp 5 Jul 2009 20:53:37 -0000 1.3 *************** *** 36,40 **** #include "matrix.h" #include "cmatrix.h" ! #include "MathLib.h" #include "prefs.h" --- 36,40 ---- #include "matrix.h" #include "cmatrix.h" ! #include "compat/MathLib.h" #include "prefs.h" Index: konvert.cpp =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/mlib/konvert.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** konvert.cpp 24 Jun 2009 21:39:59 -0000 1.2 --- konvert.cpp 5 Jul 2009 20:53:37 -0000 1.3 *************** *** 30,34 **** #include "defuns.h" ! #include "MathLib.h" #include "konvert.h" #include "mathem.h" --- 30,34 ---- #include "defuns.h" ! #include "compat/MathLib.h" #include "konvert.h" #include "mathem.h" Index: fp.cpp =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/mlib/fp.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fp.cpp 24 Jun 2009 21:44:22 -0000 1.1 --- fp.cpp 5 Jul 2009 20:53:37 -0000 1.2 *************** *** 35,39 **** #include "compat/PalmOS.h" //#include <StringMgr.h> ! #include <MathLib.h> #endif #include "defuns.h" --- 35,39 ---- #include "compat/PalmOS.h" //#include <StringMgr.h> ! #include "compat/MathLib.h" #endif #include "defuns.h" *************** *** 41,46 **** #include "fp.h" - #include "compat/FloatManager.h" - static double SCI_LIMIT_MAX; /* Above this number show it as xEy */ static double SCI_LIMIT_MIN; /* Under this number show as xE-y */ --- 41,44 ---- |