From 0656ee80d0344a5b31b742fe482a1772289216fe Mon Sep 17 00:00:00 2001 From: Vadim Kuznetsov Date: Sun, 30 Oct 2022 17:34:39 +0300 Subject: [PATCH] Fix new tools launch --- qucs/qucs_actions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qucs/qucs_actions.cpp b/qucs/qucs_actions.cpp index ccbc8e454..831517241 100644 --- a/qucs/qucs_actions.cpp +++ b/qucs/qucs_actions.cpp @@ -814,7 +814,7 @@ void QucsApp::slotCallActiveFilter() // Is called to start the transmission line calculation program. void QucsApp::slotCallLine() { - launchTool(QUCS_NAME "trans", "line calculation",QStringList(),true); + launchTool(QUCS_NAME "trans", "line calculation",QStringList()); } // -------------------------------------------------------------- @@ -829,12 +829,12 @@ void QucsApp::slotCallMatch() // Is called to start the attenuator calculation program. void QucsApp::slotCallAtt() { - launchTool(QUCS_NAME "attenuator", "attenuator calculation",QStringList(),true); + launchTool(QUCS_NAME "attenuator", "attenuator calculation",QStringList()); } void QucsApp::slotCallPwrComb() { - launchTool(QUCS_NAME "powercombining", "power combining calculation",QStringList(),true); + launchTool(QUCS_NAME "powercombining", "power combining calculation",QStringList()); }