From 65eed16d2bee3265a96280d642096821b9b0e5e6 Mon Sep 17 00:00:00 2001 From: Lucas Rieckert Date: Wed, 31 Mar 2021 11:28:59 +0200 Subject: [PATCH 1/3] Test Commit --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 00000000000..e69de29bb2d From 2b91fdd3e458ad019a35737a8792c2f9ec62db92 Mon Sep 17 00:00:00 2001 From: Acedon95 Date: Wed, 31 Mar 2021 11:31:36 +0200 Subject: [PATCH 2/3] Delete test.txt --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 test.txt diff --git a/test.txt b/test.txt deleted file mode 100644 index e69de29bb2d..00000000000 From c7c6473cb7bb71b7b6f1fad772cb8a4f02a7289f Mon Sep 17 00:00:00 2001 From: Lucas Rieckert Date: Thu, 1 Apr 2021 09:39:18 +0200 Subject: [PATCH 3/3] [FIX] Fixed the missing delete in Tutorial_GUI_ParamEditor.cpp and Tutorial_GUI_Plot1D.cpp --- doc/code_examples/Tutorial_GUI_ParamEditor.cpp | 2 +- doc/code_examples/Tutorial_GUI_Plot1D.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/code_examples/Tutorial_GUI_ParamEditor.cpp b/doc/code_examples/Tutorial_GUI_ParamEditor.cpp index 03bcd565a2b..96b2fc03681 100644 --- a/doc/code_examples/Tutorial_GUI_ParamEditor.cpp +++ b/doc/code_examples/Tutorial_GUI_ParamEditor.cpp @@ -58,6 +58,6 @@ Int main(int argc, const char** argv) editor->store(); paramFile.store("Tutorial_ParamEditor_out.ini", param); - + delete editor; return 0; } //end of main diff --git a/doc/code_examples/Tutorial_GUI_Plot1D.cpp b/doc/code_examples/Tutorial_GUI_Plot1D.cpp index 1224e20a4eb..994f298f45f 100644 --- a/doc/code_examples/Tutorial_GUI_Plot1D.cpp +++ b/doc/code_examples/Tutorial_GUI_Plot1D.cpp @@ -54,6 +54,6 @@ Int main(int argc, const char ** argv) Plot1DWidget * widget = new Plot1DWidget(Param(), nullptr); widget->canvas()->addLayer(exp_sptr, on_disc_exp_sptr); widget->show(); - + delete widget; return app.exec(); } //end of main