mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Merge pull request #1113 from ra3xdh/1111_fix
Fixed parsing SPICE library
This commit is contained in:
commit
c94049bf52
@ -305,11 +305,11 @@ int spicecompat::getPins(const QString &file, const QString &compname, QStringLi
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (subckt_header.match(lin).hasMatch()) {
|
if (subckt_header.match(lin).hasMatch()) {
|
||||||
header_start = true;
|
|
||||||
QStringList lst2 = lin.split(sep,qucs::SkipEmptyParts);
|
QStringList lst2 = lin.split(sep,qucs::SkipEmptyParts);
|
||||||
QString name = lin.section(sep,1,1,QString::SectionSkipEmpty).toLower();
|
QString name = lin.section(sep,1,1,QString::SectionSkipEmpty).toLower();
|
||||||
QString refname = compname.toLower();
|
QString refname = compname.toLower();
|
||||||
if (name != refname) continue;
|
if (name != refname) continue;
|
||||||
|
header_start = true;
|
||||||
lst2.removeFirst();
|
lst2.removeFirst();
|
||||||
lst2.removeFirst();
|
lst2.removeFirst();
|
||||||
for (const auto &s1: lst2) {
|
for (const auto &s1: lst2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user