diff --git a/Device/Coord/CoordSystem1D.cpp b/Device/Coord/CoordSystem1D.cpp
index 0ca9a27cc249c075922c5d21f7211ad4008a959c..79493314f2a0f87a5ffe6a41a219d41dab7edb37 100644
--- a/Device/Coord/CoordSystem1D.cpp
+++ b/Device/Coord/CoordSystem1D.cpp
@@ -121,8 +121,8 @@ IAxis* CoordSystem1D::createConvertedAxis(size_t i_axis, Coords units) const
     return new PointwiseAxis(axisName(0, units), coords);
 }
 
-Powerfield<double>*
-CoordSystem1D::createConvertedData(const Powerfield<double>& data, Coords units) const
+Powerfield<double>* CoordSystem1D::createConvertedData(const Powerfield<double>& data,
+                                                       Coords units) const
 {
     ASSERT(data.rank() == 1);
 
diff --git a/Device/Coord/ICoordSystem.cpp b/Device/Coord/ICoordSystem.cpp
index a56d8a5db1dc34912456e7dd4be9d95c8ae2cc6b..2a60be6f36e677e6a8b5e2b0956b58ad964bc998 100644
--- a/Device/Coord/ICoordSystem.cpp
+++ b/Device/Coord/ICoordSystem.cpp
@@ -41,8 +41,8 @@ std::string ICoordSystem::axisName(size_t i_axis, const Coords units) const
     return it->second;
 }
 
-Powerfield<double>*
-ICoordSystem::createConvertedData(const Powerfield<double>& data, Coords units) const
+Powerfield<double>* ICoordSystem::createConvertedData(const Powerfield<double>& data,
+                                                      Coords units) const
 {
     std::vector<IAxis*> axes;
     for (size_t i = 0; i < rank(); ++i)
diff --git a/Device/Data/LLData.h b/Device/Data/LLData.h
index 5fc3d88468bc17275234a42bd9401773d9640527..c7c4557c87978b7e65ab7ad5251a606c553b62ea 100644
--- a/Device/Data/LLData.h
+++ b/Device/Data/LLData.h
@@ -242,8 +242,7 @@ void LLData<T>::clear()
 template <class T>
 inline bool LLData<T>::checkSizes(size_t rank, const int* sizes) const
 {
-    return std::all_of(sizes, sizes + rank,
-                       [](const int& dim) -> bool { return dim > 0; });
+    return std::all_of(sizes, sizes + rank, [](const int& dim) -> bool { return dim > 0; });
 }
 
 template <class T>
diff --git a/Fit/Adapter/MinimizerAdapter.cpp b/Fit/Adapter/MinimizerAdapter.cpp
index 2cabe7c02cfcba94bd895d228b212b82432d0812..eb2f902ff3bb747c04fa468112de65b50be89277 100644
--- a/Fit/Adapter/MinimizerAdapter.cpp
+++ b/Fit/Adapter/MinimizerAdapter.cpp
@@ -199,8 +199,7 @@ std::vector<double> MinimizerAdapter::parErrorsAtMinimum() const
     std::vector<double> result;
     result.resize(fitRank(), 0.0);
     if (rootMinimizer()->Errors() != nullptr) {
-        std::copy(rootMinimizer()->Errors(), rootMinimizer()->Errors() + fitRank(),
-                  result.begin());
+        std::copy(rootMinimizer()->Errors(), rootMinimizer()->Errors() + fitRank(), result.begin());
     }
     return result;
 }
diff --git a/GUI/Support/IO/IOUtils.cpp b/GUI/Support/IO/IOUtils.cpp
index a3684388ab864a6262649a03e190c9067d878c72..1f77e2b6f4a25434df0c2aa1d7dfd4c118a15b64 100644
--- a/GUI/Support/IO/IOUtils.cpp
+++ b/GUI/Support/IO/IOUtils.cpp
@@ -19,7 +19,7 @@
 std::unique_ptr<Powerfield<double>> GUI::Util::IO::binifyAxes(const Powerfield<double>& data)
 {
     std::vector<IAxis*> axes;
-    for (size_t i=0; i<data.rank(); ++i)
+    for (size_t i = 0; i < data.rank(); ++i)
         axes.emplace_back(data.axis(i).clone());
 
     auto result = std::make_unique<Powerfield<double>>(axes);
diff --git a/GUI/View/Loaders/QREDataLoader.cpp b/GUI/View/Loaders/QREDataLoader.cpp
index 0310bc9a1b030d19c7cf23989776ac5d3ef8523d..a180bcbc8993ac9b99ec4268c91893229b8bd7d7 100644
--- a/GUI/View/Loaders/QREDataLoader.cpp
+++ b/GUI/View/Loaders/QREDataLoader.cpp
@@ -262,7 +262,7 @@ void QREDataLoader::processContents()
 
     if (creationOfPowerfieldIsNecessary) {
         try {
-            createPowerfieldFromParsingResult(m_item);
+            powerfieldFromParsingResult(m_item);
         } catch (...) {
             m_importResult.error = "Import not successful - caught an exception.";
             invalidateItemData();
@@ -518,7 +518,7 @@ void QREDataLoader::calculateFromParseResult() const
     }
 }
 
-void QREDataLoader::createPowerfieldFromParsingResult(RealDataItem* item) const
+void QREDataLoader::powerfieldFromParsingResult(RealDataItem* item) const
 {
     // create data sorted by ascending Q values.
     // For this, the line numbers are sorted by Q
diff --git a/GUI/View/Loaders/QREDataLoader.h b/GUI/View/Loaders/QREDataLoader.h
index 89f355c972999ee43d721a6fdc86e3467e7976b2..e865e49f9397751f972ff118f084f8a47d302a0c 100644
--- a/GUI/View/Loaders/QREDataLoader.h
+++ b/GUI/View/Loaders/QREDataLoader.h
@@ -49,7 +49,7 @@ public:
 private:
     void parseFileContent() const;
     void calculateFromParseResult() const;
-    void createPowerfieldFromParsingResult(RealDataItem* item) const;
+    void powerfieldFromParsingResult(RealDataItem* item) const;
 
 private:
     enum class UnitInFile { none, perNanoMeter, perAngstrom, other };