Ignore:
Timestamp:
08/09/10 15:36:56 (15 years ago)
Author:
Mathieu Morlighem
Message:

moved EnumAsString to EnumToString

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/ExternalResults/IntExternalResult.cpp

    r4546 r5103  
    5353        printf("IntExternalResult:\n");
    5454        printf("   id: %i\n",this->id);
    55         printf("   enum:  %i (%s)\n",this->enum_type,EnumAsString(this->enum_type));
     55        printf("   enum:  %i (%s)\n",this->enum_type,EnumToString(this->enum_type));
    5656        printf("   value: %i\n",this->value);
    5757        printf("   step: %i\n",this->step);
     
    156156
    157157        /*First write enum: */
    158         name=EnumAsString(this->enum_type);
     158        name=EnumToString(this->enum_type);
    159159        length=(strlen(name)+1)*sizeof(char);
    160160        fwrite(&length,sizeof(int),1,fid);
     
    179179/*FUNCTION IntExternalResult::GetResultName{{{1*/
    180180char* IntExternalResult::GetResultName(void){
    181         return  EnumAsString(this->enum_type);
     181        return  EnumToString(this->enum_type);
    182182}
    183183/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.