commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 02/06: removed d_ prefix on local variables


From: git
Subject: [Commit-gnuradio] [gnuradio] 02/06: removed d_ prefix on local variables
Date: Sun, 8 Nov 2015 16:21:39 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch master
in repository gnuradio.

commit 964882c45996df1115cca2fcd806380df372da05
Author: Marcus Müller <address@hidden>
Date:   Sun Nov 8 13:13:11 2015 +0100

    removed d_ prefix on local variables
---
 gr-qtgui/lib/FrequencyDisplayPlot.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gr-qtgui/lib/FrequencyDisplayPlot.cc 
b/gr-qtgui/lib/FrequencyDisplayPlot.cc
index afbd771..aef975d 100644
--- a/gr-qtgui/lib/FrequencyDisplayPlot.cc
+++ b/gr-qtgui/lib/FrequencyDisplayPlot.cc
@@ -179,14 +179,14 @@ FrequencyDisplayPlot::FrequencyDisplayPlot(int nplots, 
QWidget* parent)
 
   d_marker_noise_floor_amplitude = new QwtPlotMarker();
   d_marker_noise_floor_amplitude->setLineStyle(QwtPlotMarker::HLine);
-  QColor d_default_marker_noise_floor_amplitude_color = Qt::darkRed;
-  
setMarkerNoiseFloorAmplitudeColor(d_default_marker_noise_floor_amplitude_color);
+  QColor default_marker_noise_floor_amplitude_color = Qt::darkRed;
+  
setMarkerNoiseFloorAmplitudeColor(default_marker_noise_floor_amplitude_color);
   d_marker_noise_floor_amplitude->attach(this);
 
   d_marker_cf= new QwtPlotMarker();
   d_marker_cf->setLineStyle(QwtPlotMarker::VLine);
-  QColor d_default_marker_cf_color = Qt::lightGray;
-  setMarkerCFColor(d_default_marker_cf_color);
+  QColor default_marker_cf_color = Qt::lightGray;
+  setMarkerCFColor(default_marker_cf_color);
   d_marker_cf->attach(this);
   d_marker_cf->hide();
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]