mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix empty log on second simulation start
This commit is contained in:
parent
eaf8570514
commit
a7a535ade9
@ -48,6 +48,7 @@ AbstractSpiceKernel::AbstractSpiceKernel(Schematic *sch_, QObject *parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
Sch = sch_;
|
||||
console = nullptr;
|
||||
|
||||
if (Sch->showBias == 0) DC_OP_only = true;
|
||||
else DC_OP_only = false;
|
||||
@ -351,7 +352,6 @@ void AbstractSpiceKernel::parseNgSpiceSimOutput(QString ngspice_file,QList< QLis
|
||||
int NumPoints = 0;
|
||||
int bin_offset = 0;
|
||||
QByteArray content;
|
||||
console = nullptr;
|
||||
|
||||
QFile ofile(ngspice_file);
|
||||
if (ofile.open(QFile::ReadOnly)) {
|
||||
|
@ -495,7 +495,8 @@ void Ngspice::slotSimulate()
|
||||
}
|
||||
|
||||
if (checker_error) {
|
||||
console->insertPlainText(output);
|
||||
if (console != nullptr)
|
||||
console->insertPlainText(output);
|
||||
emit finished();
|
||||
emit errors(QProcess::FailedToStart);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user