Changeset 8529


Ignore:
Timestamp:
06/07/11 10:47:23 (14 years ago)
Author:
jschierm
Message:

Options: improved deepecho formatting.

Location:
issm/trunk/src/c/objects/Options
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Options/OptionCell.cpp

    r7739 r8529  
    8585                        ColumnWiseDimsFromIndex(dims,i,size,ndims);
    8686                        StringFromDims(cstr,dims,ndims);
    87                         _printf_(flag,"%s        values: %s begin\n" ,indent,cstr);
     87                        _printf_(flag,"%s        values: -------- begin %s --------\n" ,indent,cstr);
    8888                        ((Option *)values->GetObjectByOffset(i))->DeepEcho(indent2);
    89                         _printf_(flag,"%s        values: %s end\n"  ,indent,cstr);
     89                        _printf_(flag,"%s        values: --------  end  %s --------\n" ,indent,cstr);
    9090                }
    9191                xfree((void**)&dims);
  • issm/trunk/src/c/objects/Options/OptionStruct.cpp

    r7739 r8529  
    9191                        StringFromDims(cstr,dims,ndims);
    9292                        if (values[i]->Size()){
    93                                 _printf_(flag,"%s        values: %s begin\n" ,indent,cstr);
     93                                _printf_(flag,"%s        values: -------- begin %s --------\n" ,indent,cstr);
    9494                                for (j=0; j<values[i]->Size(); j++) ((Option *)values[i]->GetObjectByOffset(j))->DeepEcho(indent2);
    95                                 _printf_(flag,"%s        values: %s end\n"  ,indent,cstr);
     95                                _printf_(flag,"%s        values: --------  end  %s --------\n" ,indent,cstr);
    9696                        }
    9797                        else _printf_(flag,"%s        values: %s [empty]\n" ,indent,cstr);
Note: See TracChangeset for help on using the changeset viewer.