Changeset 9847 in ntrip


Ignore:
Timestamp:
Oct 5, 2022, 2:58:18 PM (19 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/availplot.cpp

    r8561 r9847  
    3535 * Created:    30-Aug-2012
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    7171// Constructor
    7272//////////////////////////////////////////////////////////////////////////////
    73 t_availPlot::t_availPlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap) : 
     73t_availPlot::t_availPlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap) :
    7474QwtPlot(parent) {
    7575
     
    111111  addCurve("Gap ", symbBlue,  xData0, yData0);
    112112  addCurve("Slip", symbRed,   xData0, yData0);
    113  
     113
    114114  // Curves
    115115  // ------
     
    139139        curve->setItemAttribute(QwtPlotItem::Legend, false);
    140140      }
    141  
     141
    142142      // Gaps Curve
    143143      // ----------
     
    148148        curve->setItemAttribute(QwtPlotItem::Legend, false);
    149149      }
    150  
     150
    151151      // Slips Curve
    152152      // -----------
     
    158158      }
    159159
     160      updateLegend();
     161
    160162      eps += 0.2;
    161163    }
    162164  }
    163  
     165
    164166  QList<double> ticks[QwtScaleDiv::NTickTypes];
    165167  QList<double> &majorTicks = ticks[QwtScaleDiv::MajorTick];
     
    179181// Add Curve
    180182//////////////////////////////////////////////////////////////////////////////
    181 QwtPlotCurve* t_availPlot::addCurve(const QString& name, 
     183QwtPlotCurve* t_availPlot::addCurve(const QString& name,
    182184                                    const QwtSymbol& symbol,
    183185                                    const QVector<double>& xData,
Note: See TracChangeset for help on using the changeset viewer.