Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion batchigramwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ void batchIgramWizard::showPlots(bool flags){

void batchIgramWizard::on_batchIgramWizard_finished(int /*result*/)
{
//emit swapBathConnections(false);
}

void batchIgramWizard::select(int n){
Expand Down
1 change: 0 additions & 1 deletion batchigramwizard.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ class batchIgramWizard : public QWizard
void showPlots(bool flags);
batchIntro *introPage;
signals:
void swapBathConnections(bool);
void abort();


Expand Down
4 changes: 1 addition & 3 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,7 @@ void MainWindow::on_actionLoad_Interferogram_triggered()
ui->useAnnulust->hide();
if (dialog.exec()){
if (dialog.selectedFiles().size() == 1){
QStringList selectedFiles = dialog.selectedFiles();
loadFile(selectedFiles.first());
loadFile(dialog.selectedFiles().constFirst());
}
else{
m_igramsToProcess = dialog.selectedFiles();
Expand Down Expand Up @@ -1303,7 +1302,6 @@ void MainWindow::batchProcess(QStringList fileList){
void MainWindow::Batch_Process_Interferograms()
{
batchWiz = new batchIgramWizard(m_igramsToProcess, this,Qt::Window);
connect(batchWiz,SIGNAL(swapBathConnections(bool)),this, SLOT(batchConnections(bool)));
batchConnections(true);
//connect(batchIgramWizard::goPb, &QPushButton::pressed, this, &MainWindow::batchProcess);
connect(batchWiz, SIGNAL(finished(int)), this, SLOT(batchFinished(int)));
Expand Down
2 changes: 1 addition & 1 deletion psi_dlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void PSI_dlg::on_browse_clicked()
dialog.setNameFilters(filters);
if (dialog.exec()){
QStringList files = dialog.selectedFiles();
QFileInfo a(files.first());
QFileInfo a(files.constFirst());
settings.setValue("lastPath",a.absoluteFilePath());
//m_surfaceManager->process_psi(dialog.selectedFiles());
ui->igramList->addItems(files);
Expand Down
Loading