From 597b93798a804cde1783d6d2ab53b348d57c44cd Mon Sep 17 00:00:00 2001
From: Tom Rondeau <tom@trondeau.com>
Date: Mon, 7 Jul 2014 12:18:00 -0400
Subject: Removing trailing/extra whitespaces before release.

We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
---
 gr-qtgui/lib/ConstellationDisplayPlot.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'gr-qtgui/lib/ConstellationDisplayPlot.cc')

diff --git a/gr-qtgui/lib/ConstellationDisplayPlot.cc b/gr-qtgui/lib/ConstellationDisplayPlot.cc
index 47e6b0b0de..a3ad6bf035 100644
--- a/gr-qtgui/lib/ConstellationDisplayPlot.cc
+++ b/gr-qtgui/lib/ConstellationDisplayPlot.cc
@@ -114,7 +114,7 @@ ConstellationDisplayPlot::ConstellationDisplayPlot(int nplots, QWidget* parent)
     d_plot_curve.push_back(new QwtPlotCurve(QString("Data %1").arg(i)));
     d_plot_curve[i]->attach(this);
     d_plot_curve[i]->setPen(QPen(colors[i]));
-    
+
     QwtSymbol *symbol = new QwtSymbol(QwtSymbol::NoSymbol, QBrush(colors[i]),
                                       QPen(colors[i]), QSize(7,7));
 
@@ -191,7 +191,7 @@ ConstellationDisplayPlot::plotNewData(const std::vector<double*> realDataPoints,
     if((numDataPoints > 0)) {
       if(numDataPoints != d_numPoints) {
 	d_numPoints = numDataPoints;
-      
+
 	for(int i = 0; i < d_nplots; i++) {
 	  delete [] d_real_data[i];
 	  delete [] d_imag_data[i];
@@ -226,7 +226,7 @@ ConstellationDisplayPlot::plotNewData(const std::vector<double*> realDataPoints,
 	  }
 	}
 	_autoScale(bottom, top);
-      }      
+      }
 
       replot();
 
-- 
cgit v1.2.3