Remove remains of qucs_rescodes utility

This commit is contained in:
Vadim Kuznetsov 2022-08-26 15:29:13 +03:00
parent c6064c0ee7
commit 914901fd2b
3 changed files with 1 additions and 17 deletions

View File

@ -336,7 +336,7 @@ public:
*distrHor, *distrVert, *selectAll, *callLib, *callMatch, *changeProps,
*addToProj, *editFind, *insEntity, *selectMarker,
*createLib, *importData, *graph2csv, *createPkg, *extractPkg,
*callAtt, *callRes, *centerHor, *centerVert, *loadModule, *buildModule;
*callAtt, *centerHor, *centerVert, *loadModule, *buildModule;
QAction *helpQucsIndex;
QAction *simSettings;
@ -385,7 +385,6 @@ public slots:
void slotCallLibrary();
void slotCallMatch();
void slotCallAtt();
void slotCallRes();
void slotHelpIndex(); // shows a HTML docu: Help Index
void slotHelpQucsIndex();
void slotGettingStarted(); // shows a HTML docu: Getting started

View File

@ -839,13 +839,6 @@ void QucsApp::slotCallAtt()
launchTool(QUCS_NAME "attenuator", "attenuator calculation",QStringList(),true);
}
// ------------------------------------------------------------------------
// Is called to start the resistor color code calculation program.
void QucsApp::slotCallRes()
{
launchTool("qucsrescodes", "resistor color code calculation",QStringList(),true);
}
/*!
* \brief launch an external application passing arguments
*

View File

@ -561,13 +561,6 @@ void QucsApp::initActions()
tr("Attenuator synthesis\n\nStarts attenuator calculation program"));
connect(callAtt, SIGNAL(triggered()), SLOT(slotCallAtt()));
callRes = new QAction(tr("Resistor color codes"), this);
callRes->setShortcut(Qt::CTRL+Qt::Key_8);
callRes->setStatusTip(tr("Starts Qucs resistor color codes"));
callRes->setWhatsThis(
tr("Resistor color codes\n\nStarts standard resistor color code computation program"));
connect(callRes, SIGNAL(triggered()), SLOT(slotCallRes()));
simulate = new QAction(QIcon((":/bitmaps/gear.png")), tr("Simulate"), this);
simulate->setShortcut(Qt::Key_F2);
simulate->setStatusTip(tr("Simulates the current schematic"));
@ -790,7 +783,6 @@ void QucsApp::initMenuBar()
if (QucsSettings.DefaultSimulator == spicecompat::simQucsator)
toolMenu->addAction(callMatch);
toolMenu->addAction(callAtt);
toolMenu->addAction(callRes);
toolMenu->addSeparator();
cmMenu = new QMenu(tr("Compact modelling"));