Merge pull request #1113 from ra3xdh/1111_fix

Fixed parsing SPICE library
This commit is contained in:
Vadim Kuznetsov 2024-12-03 17:53:46 +01:00 committed by GitHub
commit c94049bf52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) {