From 4c2bba069ede3cd0d063a3288862a7ea5f6e9e14 Mon Sep 17 00:00:00 2001
From: "Joachim Wuttke (h)" <j.wuttke@fz-juelich.de>
Date: Sun, 19 Nov 2023 10:17:44 +0100
Subject: [PATCH] rename GUI/View/PlotSpecular/SpecularPlot ->
 GUI/View/PlotUtil/

---
 GUI/View/Frame/Fit1DFrame.cpp                        | 2 +-
 GUI/View/PlotSpecular/SpecularPlotCanvas.cpp         | 2 +-
 GUI/View/{PlotSpecular => PlotUtil}/SpecularPlot.cpp | 4 ++--
 GUI/View/{PlotSpecular => PlotUtil}/SpecularPlot.h   | 8 ++++----
 4 files changed, 8 insertions(+), 8 deletions(-)
 rename GUI/View/{PlotSpecular => PlotUtil}/SpecularPlot.cpp (98%)
 rename GUI/View/{PlotSpecular => PlotUtil}/SpecularPlot.h (92%)

diff --git a/GUI/View/Frame/Fit1DFrame.cpp b/GUI/View/Frame/Fit1DFrame.cpp
index bb6c957498e..31712bf7e9f 100644
--- a/GUI/View/Frame/Fit1DFrame.cpp
+++ b/GUI/View/Frame/Fit1DFrame.cpp
@@ -26,9 +26,9 @@
 #include "GUI/View/PlotProgress/FitFlowWidget.h"
 #include "GUI/View/PlotScale/RangeUtil.h"
 #include "GUI/View/PlotSpecular/SpecularDataPropertyWidget.h"
-#include "GUI/View/PlotSpecular/SpecularPlot.h"
 #include "GUI/View/PlotSpecular/SpecularPlotCanvas.h"
 #include "GUI/View/PlotUtil/PlotStatusLabel.h"
+#include "GUI/View/PlotUtil/SpecularPlot.h"
 
 Fit1DFrame::Fit1DFrame(QWidget* parent)
     : DataAccessWidget(parent)
diff --git a/GUI/View/PlotSpecular/SpecularPlotCanvas.cpp b/GUI/View/PlotSpecular/SpecularPlotCanvas.cpp
index 2e70bd6d9d1..096247861ff 100644
--- a/GUI/View/PlotSpecular/SpecularPlotCanvas.cpp
+++ b/GUI/View/PlotSpecular/SpecularPlotCanvas.cpp
@@ -15,8 +15,8 @@
 #include "GUI/View/PlotSpecular/SpecularPlotCanvas.h"
 #include "GUI/Model/Data/Data1DItem.h"
 #include "GUI/View/PlotScale/FontScalingEvent.h"
-#include "GUI/View/PlotSpecular/SpecularPlot.h"
 #include "GUI/View/PlotUtil/PlotStatusLabel.h"
+#include "GUI/View/PlotUtil/SpecularPlot.h"
 
 SpecularPlotCanvas::SpecularPlotCanvas(QWidget* parent)
     : QWidget(parent)
diff --git a/GUI/View/PlotSpecular/SpecularPlot.cpp b/GUI/View/PlotUtil/SpecularPlot.cpp
similarity index 98%
rename from GUI/View/PlotSpecular/SpecularPlot.cpp
rename to GUI/View/PlotUtil/SpecularPlot.cpp
index 08d3d2d1578..42505ace587 100644
--- a/GUI/View/PlotSpecular/SpecularPlot.cpp
+++ b/GUI/View/PlotUtil/SpecularPlot.cpp
@@ -2,7 +2,7 @@
 //
 //  BornAgain: simulate and fit reflection and scattering
 //
-//! @file      GUI/View/PlotSpecular/SpecularPlot.cpp
+//! @file      GUI/View/PlotUtil/SpecularPlot.cpp
 //! @brief     Implements class SpecularPlot.
 //!
 //! @homepage  http://www.bornagainproject.org
@@ -12,7 +12,7 @@
 //
 //  ************************************************************************************************
 
-#include "GUI/View/PlotSpecular/SpecularPlot.h"
+#include "GUI/View/PlotUtil/SpecularPlot.h"
 #include "Base/Axis/Frame.h"
 #include "Base/Py/PyFmt.h"
 #include "Base/Util/Assert.h"
diff --git a/GUI/View/PlotSpecular/SpecularPlot.h b/GUI/View/PlotUtil/SpecularPlot.h
similarity index 92%
rename from GUI/View/PlotSpecular/SpecularPlot.h
rename to GUI/View/PlotUtil/SpecularPlot.h
index 870066f06ee..6b3440188e3 100644
--- a/GUI/View/PlotSpecular/SpecularPlot.h
+++ b/GUI/View/PlotUtil/SpecularPlot.h
@@ -2,7 +2,7 @@
 //
 //  BornAgain: simulate and fit reflection and scattering
 //
-//! @file      GUI/View/PlotSpecular/SpecularPlot.h
+//! @file      GUI/View/PlotUtil/SpecularPlot.h
 //! @brief     Defines class SpecularPlot.
 //!
 //! @homepage  http://www.bornagainproject.org
@@ -12,8 +12,8 @@
 //
 //  ************************************************************************************************
 
-#ifndef BORNAGAIN_GUI_VIEW_PLOTSPECULAR_SPECULARPLOT_H
-#define BORNAGAIN_GUI_VIEW_PLOTSPECULAR_SPECULARPLOT_H
+#ifndef BORNAGAIN_GUI_VIEW_PLOTUTIL_SPECULARPLOT_H
+#define BORNAGAIN_GUI_VIEW_PLOTUTIL_SPECULARPLOT_H
 
 #include "GUI/View/PlotUtil/ScientificPlot.h"
 #include <QMap>
@@ -97,4 +97,4 @@ private:
     QMap<Data1DItem*, QCPErrorBars*> m_errorbar_map;
 };
 
-#endif // BORNAGAIN_GUI_VIEW_PLOTSPECULAR_SPECULARPLOT_H
+#endif // BORNAGAIN_GUI_VIEW_PLOTUTIL_SPECULARPLOT_H
-- 
GitLab