Fix obsolete signals and slots

This commit is contained in:
Vadim Kuznetsov 2022-02-15 21:26:33 +01:00
parent 2c6ad61908
commit a1d014b9c2
3 changed files with 9 additions and 8 deletions

View File

@ -234,7 +234,7 @@ void QucsApp::initView()
setCentralWidget(DocumentTab);
connect(DocumentTab,
SIGNAL(currentChanged(QWidget*)), SLOT(slotChangeView(QWidget*)));
SIGNAL(currentChanged(int)), SLOT(slotChangeView()));
// Give every tab a close button, and connect the button's signal to
// slotFileClose
@ -265,7 +265,7 @@ void QucsApp::initView()
connect(editText, SIGNAL(returnPressed()), SLOT(slotApplyCompText()));
connect(editText, SIGNAL(textChanged(const QString&)),
SLOT(slotResizePropEdit(const QString&)));
connect(editText, SIGNAL(lostFocus()), SLOT(slotHideEdit()));
connect(editText, SIGNAL(editingFinished()), SLOT(slotHideEdit()));
// ----------------------------------------------------------
// "Project Tab" of the left QTabWidget
@ -1458,7 +1458,7 @@ bool QucsApp::gotoPage(const QString& Name)
view->drawn = false;
return false;
}
slotChangeView(DocumentTab->currentWidget());
slotChangeView();
// if only an untitled document was open -> close it
if(getDoc(0)->DocName.isEmpty())
@ -1784,9 +1784,10 @@ void QucsApp::slotHelpReport()
// --------------------------------------------------------------
// Is called when another document is selected via the TabBar.
void QucsApp::slotChangeView(QWidget *w)
void QucsApp::slotChangeView()
{
QWidget *w = DocumentTab->currentWidget();
editText->setHidden (true); // disable text edit of component property
QucsDoc * Doc;
if(w==NULL)return;

View File

@ -150,7 +150,7 @@ private slots:
void slotButtonProjNew();
void slotButtonProjOpen();
void slotButtonProjDel();
void slotChangeView(QWidget*);
void slotChangeView();
void slotSimulate();
void slotAfterSimulation(int, SimMessage*);
void slotDCbias();

View File

@ -612,11 +612,11 @@ void QucsApp::initActions()
connect(showNet, SIGNAL(triggered()), SLOT(slotShowLastNetlist()));
simSettings = new QAction(tr("Select default simulator"),this);
connect(simSettings,SIGNAL(activated()),SLOT(slotSimSettings()));
connect(simSettings,SIGNAL(triggered()),SLOT(slotSimSettings()));
buildVAModule = new QAction(tr("Build Verilog-A module from subcircuit"),this);
connect(buildVAModule,SIGNAL(activated()),SLOT(slotBuildVAModule()));
connect(buildVAModule,SIGNAL(triggered()),SLOT(slotBuildVAModule()));
buildIFS = new QAction(tr("Build XSPICE IFS file from subcircuit"),this);
connect(buildIFS,SIGNAL(activated()),SLOT(slotBuildXSPICEIfs()));
connect(buildIFS,SIGNAL(triggered()),SLOT(slotBuildXSPICEIfs()));
viewToolBar = new QAction(tr("Tool&bar"), this);