[21337] | 1 | Index: ../trunk-jpl/src/wrappers/matlab/io/WriteMatlabData.cpp
|
---|
| 2 | ===================================================================
|
---|
| 3 | --- ../trunk-jpl/src/wrappers/matlab/io/WriteMatlabData.cpp (revision 21069)
|
---|
| 4 | +++ ../trunk-jpl/src/wrappers/matlab/io/WriteMatlabData.cpp (revision 21070)
|
---|
| 5 | @@ -129,7 +129,7 @@
|
---|
| 6 | }
|
---|
| 7 | /*}}}*/
|
---|
| 8 | /*FUNCTION WriteData(mxArray** pdataref,char* string){{{*/
|
---|
| 9 | -void WriteData(mxArray** pdataref,char* string){
|
---|
| 10 | +void WriteData(mxArray** pdataref,const char* string){
|
---|
| 11 |
|
---|
| 12 | *pdataref=mxCreateString(string);
|
---|
| 13 | }
|
---|
| 14 | @@ -428,7 +428,7 @@
|
---|
| 15 | mxSetField(dataref,0,fieldname,field);
|
---|
| 16 | }
|
---|
| 17 | /*}}}*/
|
---|
| 18 | -/*FUNCTION SetStructureFieldi(mxArray* dataref,const char* fieldname,char* string) {{{*/
|
---|
| 19 | +/*FUNCTION SetStructureFieldi(mxArray* dataref,const char* fieldname,const char* string) {{{*/
|
---|
| 20 | void SetStructureFieldi(mxArray* dataref,int i,const char* fieldname,const char* string){
|
---|
| 21 |
|
---|
| 22 | mxArray* field = NULL;
|
---|
| 23 | Index: ../trunk-jpl/src/wrappers/matlab/io/matlabio.h
|
---|
| 24 | ===================================================================
|
---|
| 25 | --- ../trunk-jpl/src/wrappers/matlab/io/matlabio.h (revision 21069)
|
---|
| 26 | +++ ../trunk-jpl/src/wrappers/matlab/io/matlabio.h (revision 21070)
|
---|
| 27 | @@ -26,7 +26,7 @@
|
---|
| 28 | void WriteData(mxArray** pdataref,int integer);
|
---|
| 29 | void WriteData(mxArray** pdataref,bool boolean);
|
---|
| 30 | void WriteData(mxArray** pdataref,double scalar);
|
---|
| 31 | -void WriteData(mxArray** pdataref,char* string);
|
---|
| 32 | +void WriteData(mxArray** pdataref,const char* string);
|
---|
| 33 | void WriteData(mxArray** pdataref);
|
---|
| 34 | void WriteData(mxArray** pdataref,BamgGeom* bamggeom);
|
---|
| 35 | void WriteData(mxArray** pdataref,BamgMesh* bamgmesh);
|
---|