Skip to content

Commit

Permalink
- fixes to XMLDump.mo
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/branches/OpenModelica1.5.0@4307 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 6, 2009
1 parent 8d349db commit 93b8dd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/XMLDump.mo
Expand Up @@ -878,7 +878,7 @@ algorithm
Exp.ComponentRef cref_c;
String cref;
case {} then ();
case ((crefIndex as DAELow.CREFINDEX(cref=SOME(cref_c),index=SOME(index_c))) :: crefIndexList)
case ((crefIndex as DAELow.CREFINDEX(cref=cref_c,index=index_c)) :: crefIndexList)
equation
cref=Exp.crefStr(cref_c);
dumpStrOpenTagAttr(ELEMENT,ID,intString(index_c));
Expand Down Expand Up @@ -2865,7 +2865,7 @@ algorithm
String str_s;
Integer index_s;
case {} then ();
case ((stringIndex as DAELow.STRINGINDEX(str=SOME(str_s),index=SOME(index_s))) :: stringIndexList)
case ((stringIndex as DAELow.STRINGINDEX(str=str_s,index=index_s)) :: stringIndexList)
local Boolean ver;
equation
dumpStrOpenTagAttr(ELEMENT,ID,intString(index_s));
Expand Down

0 comments on commit 93b8dd8

Please sign in to comment.