Ignore:
Timestamp:
05/10/11 09:30:01 (14 years ago)
Author:
Mathieu Morlighem
Message:

moved EnumToString to EnumToStringx which is now a module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Params/DoubleMatParam.cpp

    r6163 r8224  
    4949
    5050        printf("DoubleMatParam:\n");
    51         printf("   enum: %i (%s)\n",this->enum_type,EnumToString(this->enum_type));
     51        printf("   enum: %i (%s)\n",this->enum_type,EnumToStringx(this->enum_type));
    5252        printf("   matrix size: %ix%i\n",this->M,this->N);
    5353
     
    6060       
    6161        printf("DoubleMatParam:\n");
    62         printf("   enum: %i (%s)\n",this->enum_type,EnumToString(this->enum_type));
     62        printf("   enum: %i (%s)\n",this->enum_type,EnumToStringx(this->enum_type));
    6363        printf("   matrix size: %ix%i\n",this->M,this->N);
    6464        for(i=0;i<this->M;i++){
     
    167167/*FUNCTION DoubleMatParam::GetParameterName{{{1*/
    168168char* DoubleMatParam::GetParameterName(void){
    169         return  EnumToString(this->enum_type);
     169        return  EnumToStringx(this->enum_type);
    170170}
    171171/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.