mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fixed Qt6 warnings in spicedialog.cpp
This commit is contained in:
parent
9daa031765
commit
754515366b
@ -373,10 +373,9 @@ bool SpiceDialog::loadSpiceNetList(const QString& s)
|
||||
connect(SpicePrep, SIGNAL(readyReadStandardError()), SLOT(slotGetPrepErr()));
|
||||
}
|
||||
|
||||
QMessageBox *MBox = new QMessageBox(tr("Info"),
|
||||
QMessageBox *MBox = new QMessageBox(QMessageBox::NoIcon, tr("Info"),
|
||||
tr("Preprocessing SPICE file \"%1\".").arg(FileInfo.filePath()),
|
||||
QMessageBox::NoIcon, QMessageBox::Abort,
|
||||
QMessageBox::NoButton, QMessageBox::NoButton, this);
|
||||
QMessageBox::Abort, this);
|
||||
|
||||
connect(SpicePrep, SIGNAL(finished(int, QProcess::ExitStatus)), MBox, SLOT(close()));
|
||||
|
||||
@ -440,10 +439,9 @@ bool SpiceDialog::loadSpiceNetList(const QString& s)
|
||||
connect(QucsConv, SIGNAL(readyReadStandardError()), SLOT(slotGetError()));
|
||||
|
||||
|
||||
QMessageBox *MBox = new QMessageBox(tr("Info"),
|
||||
QMessageBox *MBox = new QMessageBox(QMessageBox::NoIcon, tr("Info"),
|
||||
tr("Converting SPICE file \"%1\".").arg(FileInfo.filePath()),
|
||||
QMessageBox::NoIcon, QMessageBox::Abort,
|
||||
QMessageBox::NoButton, QMessageBox::NoButton, this);
|
||||
QMessageBox::Abort, this);
|
||||
|
||||
connect(QucsConv, SIGNAL(finished(int, QProcess::ExitStatus)), MBox, SLOT(close()));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user