Skip to content

Commit

Permalink
Remove mLIQSS3 from GUI.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Sep 8, 2023
1 parent 86e4982 commit 10b9e3f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion src/gui/mmohighlight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ MmoHighlighter::MmoHighlighter(QTextDocument *parent, h_type file) : QSyntaxHigh
<< "\\bQSS4\\b"
<< "\\bmLIQSS\\b"
<< "\\bmLIQSS2\\b"
<< "\\bmLIQSS3\\b"
<< "\\bCVODE_AM\\b"
<< "\\bCVODE_BDF\\b"
<< "\\bIDA\\b"
Expand Down
5 changes: 0 additions & 5 deletions src/gui/runform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ int RunDlg::getSolverIdx(QString str)
if (str.trimmed() == "IDA") return 13;
if (str.trimmed() == "mLIQSS") return 14;
if (str.trimmed() == "mLIQSS2") return 15;
if (str.trimmed() == "mLIQSS3") return 16;
return -1;
}

Expand Down Expand Up @@ -166,9 +165,6 @@ QString RunDlg::getSolverString(int idx)
case 15:
_test_methods_cbx->setCheckState(Qt::Checked);
return "mLIQSS2";
case 16:
_test_methods_cbx->setCheckState(Qt::Checked);
return "mLIQSS3";
}
return QString();
}
Expand Down Expand Up @@ -302,7 +298,6 @@ void RunDlg::updateTestMethods(int state)
QListView *solver_list = qobject_cast<QListView *>(_solver->view());
solver_list->setRowHidden(getSolverIdx("mLIQSS"), hide);
solver_list->setRowHidden(getSolverIdx("mLIQSS2"), hide);
solver_list->setRowHidden(getSolverIdx("mLIQSS3"), hide);
if (hide) {
setSolver("QSS");
}
Expand Down
5 changes: 0 additions & 5 deletions src/gui/ui/run.ui
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@
<string>mLIQSS2</string>
</property>
</item>
<item>
<property name="text">
<string>mLIQSS3</string>
</property>
</item>
</widget>
</item>
<item row="1" column="2">
Expand Down

0 comments on commit 10b9e3f

Please sign in to comment.