remove dead code

This commit is contained in:
Axel Kohlmeyer
2023-08-25 17:51:22 -04:00
parent 74d76f988d
commit 9c91ec9050
2 changed files with 0 additions and 7 deletions

View File

@ -855,7 +855,6 @@ void LammpsGui::do_run(bool use_buffer)
status->repaint(); status->repaint();
start_lammps(); start_lammps();
if (!lammps.is_open()) return; if (!lammps.is_open()) return;
clear();
capturer->BeginCapture(); capturer->BeginCapture();
runner = new LammpsRunner(this); runner = new LammpsRunner(this);
@ -946,11 +945,6 @@ void LammpsGui::render_image()
imagewindow->show(); imagewindow->show();
} }
void LammpsGui::clear()
{
ui->textEdit->moveCursor(QTextCursor::Start, QTextCursor::MoveAnchor);
}
void LammpsGui::view_chart() void LammpsGui::view_chart()
{ {
QSettings settings; QSettings settings;

View File

@ -77,7 +77,6 @@ private slots:
void paste(); void paste();
void undo(); void undo();
void redo(); void redo();
void clear();
void run_buffer() { do_run(true); } void run_buffer() { do_run(true); }
void run_file() { do_run(false); } void run_file() { do_run(false); }