Skip to content
Snippets Groups Projects
Commit f7bdc6cf authored by Samuel Jones's avatar Samuel Jones
Browse files

Re #23570 Clang-format

parent 69736549
No related branches found
No related tags found
No related merge requests found
......@@ -78,8 +78,8 @@ void ProjectRecoveryModel::startMantidNormally() {
m_projRec->startProjectSaving();
m_failedRun = false;
//If project recovery is running on script window we need to abort
if (m_recoveryRunning){
// If project recovery is running on script window we need to abort
if (m_recoveryRunning) {
m_presenter->emitAbortScript();
}
......
......@@ -25,7 +25,7 @@ public:
void recoverSelectedCheckpoint(std::string &selected);
void openSelectedInEditor(std::string &selected);
bool getFailedRun() const;
bool hasRecoveryStarted() const { return m_recoveryRunning;}
bool hasRecoveryStarted() const { return m_recoveryRunning; }
std::string decideLastCheckpoint();
private:
......
......@@ -178,7 +178,7 @@ void ProjectRecoveryPresenter::emitAbortScript() {
}
}
void ProjectRecoveryPresenter::changeStartMantidToCancelLabel(){
void ProjectRecoveryPresenter::changeStartMantidToCancelLabel() {
if (m_openView == RecoveryView) {
m_recView->changeStartMantidButton("Cancel Recovery");
} else {
......
......@@ -88,6 +88,6 @@ void ProjectRecoveryView::emitAbortScript() {
emit(abortProjectRecoveryScript());
}
void ProjectRecoveryView::changeStartMantidButton(const QString &string){
void ProjectRecoveryView::changeStartMantidButton(const QString &string) {
ui->startmantidButton->setText(string);
}
\ No newline at end of file
......@@ -124,6 +124,6 @@ void RecoveryFailureView::emitAbortScript() {
emit(abortProjectRecoveryScript());
}
void RecoveryFailureView::changeStartMantidButton(const QString &string){
void RecoveryFailureView::changeStartMantidButton(const QString &string) {
ui->pushButton_3->setText(string);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment