IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2006, 1:32:23 PM (20 years ago)
Author:
jhoblitt
Message:

bug #790 - remove psErrorText.h and inline all error codes. all newly inlined error codes are wrapped with the _() macro from future gettextification

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src

    • Property svn:ignore
      •  

        old new  
        1010libpslib.la.temp
        1111config.h.in
        12 psErrorText.h
        1312*.bb
        1413*.bbg
  • trunk/psLib/src/math/psPolynomial.c

    r7914 r8232  
    77*  polynomials.  It also contains a Gaussian functions.
    88*
    9 *  @version $Revision: 1.147 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-07-15 02:57:12 $
     9*  @version $Revision: 1.148 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-08-08 23:32:23 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3232#include "psPolynomial.h"
    3333#include "psAssert.h"
    34 #include "psErrorText.h"
     34
    3535
    3636/*****************************************************************************/
     
    795795    } else {
    796796        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
    797                 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,
     797                _("Unknown polynomial type 0x%x found.  Evaluation failed."),
    798798                poly->type);
    799799    }
     
    845845    } else {
    846846        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
    847                 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,
     847                _("Unknown polynomial type 0x%x found.  Evaluation failed."),
    848848                poly->type);
    849849    }
     
    924924    } else {
    925925        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
    926                 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,
     926                _("Unknown polynomial type 0x%x found.  Evaluation failed."),
    927927                poly->type);
    928928    }
     
    10401040    } else {
    10411041        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
    1042                 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,
     1042                _("Unknown polynomial type 0x%x found.  Evaluation failed."),
    10431043                poly->type);
    10441044    }
Note: See TracChangeset for help on using the changeset viewer.