mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix obsolete signals and slots
This commit is contained in:
parent
2c6ad61908
commit
a1d014b9c2
@ -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;
|
||||
|
@ -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();
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user