- Timestamp:
- 01/27/12 08:19:58 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 autom4te.cache 2 aclocal.m4 1 3 bin 4 config.log 5 config.h 6 config.h.in 7 config.status 2 8 configure 9 doxygen 10 ISSM.paf 11 ISSM.ppf 12 ISSM.ppf_cache 13 libtool 14 list 3 15 Makefile 4 16 Makefile.in 5 ISSM.paf6 list7 ISSM.ppf_cache8 config.log9 config.h10 .ignore.txt11 config.status12 17 stamp-h1 13 18 svn-commit* 14 ISSM.ppf15 config.h.in16 autom4te.cache17 aclocal.m418 doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp
r9883 r11237 196 196 197 197 /*First write enum: */ 198 name=EnumToStringx(this->enum_type);198 EnumToStringx(&name,this->enum_type); 199 199 length=(strlen(name)+1)*sizeof(char); 200 200 fwrite(&length,sizeof(int),1,fid); 201 201 fwrite(name,length,1,fid); 202 xfree((void**)&name); 202 203 203 204 /*Now write time and step: */ … … 217 218 /*}}}1*/ 218 219 /*FUNCTION DoubleMatExternalResult::GetResultName{{{1*/ 219 char* DoubleMatExternalResult::GetResultName(void){220 return EnumToStringx(this->enum_type);220 void DoubleMatExternalResult::GetResultName(char** pname){ 221 EnumToStringx(pname,this->enum_type); 221 222 } 222 223 /*}}}*/ … … 235 236 236 237 /*recover name: */ 237 name=this->GetResultName();238 this->GetResultName(&name); 238 239 239 240 /*create matlab matrix: */
Note:
See TracChangeset
for help on using the changeset viewer.