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/psMatrix.c

    r7766 r8232  
    2121 *  @author Robert DeSonia, MHPCC
    2222 *
    23  *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2006-06-30 02:20:06 $
     23 *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2006-08-08 23:32:23 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4343#include "psMatrix.h"
    4444#include "psAssert.h"
    45 #include "psErrorText.h"
     45
    4646#include "psTrace.h"
    4747
     
    568568
    569569    if(numRowsIn!=numColsOut && numRowsOut!=numColsIn) {
    570         psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psMatrix_TRANSPOSE_MISMATCH);
     570        psError(PS_ERR_BAD_PARAMETER_VALUE, true, _("Number of rows do not match number of columns."));
    571571        TRANSPOSE_CLEANUP;
    572572    }
Note: See TracChangeset for help on using the changeset viewer.