Skip to content

Commit

Permalink
Fix slot disconnection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Oct 17, 2023
1 parent 766a0f9 commit 7982bf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qucs/qucs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3377,7 +3377,8 @@ void QucsApp::slotSaveNetlist()
void QucsApp::slotAfterSpiceSimulation(ExternSimDialog *SimDlg)
{
Schematic *sch = (Schematic*)DocumentTab->currentWidget();
disconnect(SimDlg,SIGNAL(simulated()),this,SLOT(slotAfterSpiceSimulation()));
disconnect(SimDlg,SIGNAL(simulated(ExternSimDialog *)),
this,SLOT(slotAfterSpiceSimulation(ExternSimDialog *)));
disconnect(SimDlg,SIGNAL(warnings()),this,SLOT(slotShowWarnings()));
disconnect(SimDlg,SIGNAL(success()),this,SLOT(slotResetWarnings()));
if (TuningMode && SimDlg->hasError) {
Expand Down

0 comments on commit 7982bf9

Please sign in to comment.