Skip to content

Commit

Permalink
Fix new tools launch
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Oct 30, 2022
1 parent 29d535c commit 0656ee8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qucs/qucs_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

// --------------------------------------------------------------
Expand All @@ -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());
}


Expand Down

0 comments on commit 0656ee8

Please sign in to comment.