mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
* fixed yet another parsing bug
This commit is contained in:
parent
b13eb0b574
commit
dc143d46b4
@ -187,7 +187,8 @@ QString VHDL_File::loadFile()
|
||||
if ((k = t.find(' ')) >= 0)
|
||||
t = t.mid(k+1);
|
||||
t = t.simplifyWhiteSpace();
|
||||
k = s.mid(l,j).contains(',') + 1;
|
||||
k = s.find(';',l+2);
|
||||
k = s.mid(l,k-l).contains(',') + 1;
|
||||
while (k-->0) types = types + t + ",";
|
||||
i--;
|
||||
l = i;
|
||||
|
Loading…
x
Reference in New Issue
Block a user