From 223ccb038ad4d8ded8be7569fe32b9af7cf94549 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Fri, 13 Mar 2015 00:27:55 +0100 Subject: [PATCH] Move MainWindow::onCloseSingleRun() to proper place in MainWindow.cpp --- gui/mainwindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index f89b986..158a3c6 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -120,11 +120,6 @@ void MainWindow::onCleanDashboard() delete m_dashboard->widget(0); } -void MainWindow::onCloseSingleRun() -{ - emit singleRunClose(ui->qcbox_singleRun->currentText()); -} - void MainWindow::onSetActiveSequenceKey(const std::string& key) { const SequenceSelectorModel* model = static_cast(ui->qcbox_sequence->model()); @@ -165,6 +160,11 @@ void MainWindow::onCloseSequence() emit sequenceClose(ui->qcbox_sequence->currentText()); } +void MainWindow::onCloseSingleRun() +{ + emit singleRunClose(ui->qcbox_singleRun->currentText()); +} + void MainWindow::onIntegrateBaselineSelected() { emit integrateBaselineMode(); -- 2.43.5