From 1c41776db8f560e16dc74086f26d30c624e01660 Mon Sep 17 00:00:00 2001
From: Tom Perkins <thomas.perkins@stfc.ac.uk>
Date: Thu, 15 Sep 2016 09:37:52 +0100
Subject: [PATCH] Apply cppcheck recommendations

re #9239
---
 MantidPlot/src/Mantid/MantidDock.cpp | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/MantidPlot/src/Mantid/MantidDock.cpp b/MantidPlot/src/Mantid/MantidDock.cpp
index 640d2ca302f..1ee005d0854 100644
--- a/MantidPlot/src/Mantid/MantidDock.cpp
+++ b/MantidPlot/src/Mantid/MantidDock.cpp
@@ -1353,16 +1353,12 @@ void MantidDockWidget::doPlotSpectra(bool errors) {
   if (userInput.plots.empty())
     return;
 
-  constexpr bool spectrumPlot(true);
-  MultiLayer *window(NULL);
-
   if (userInput.tiled) {
     m_mantidUI->plotSubplots(userInput.plots, MantidQt::DistributionDefault,
                              errors);
   } else {
-    m_mantidUI->plot1D(userInput.plots, spectrumPlot,
-                       MantidQt::DistributionDefault, errors, window, false,
-                       userInput.waterfall);
+    m_mantidUI->plot1D(userInput.plots, true, MantidQt::DistributionDefault,
+                       errors, nullptr, false, userInput.waterfall);
   }
 }
 
-- 
GitLab