diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2020-06-13 00:01:53 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2020-06-13 00:01:53 -0300 |
commit | 6c0e98a2727d07e1fbb38b78c27d68e98ad09465 (patch) | |
tree | 12764ca986c9a1943bc2012b0cc751471773f6ee /Project/ChartView.h | |
parent | 196389a70ef3a03aa8764b9532812a17dd55014b (diff) | |
download | PSP.git-6c0e98a2727d07e1fbb38b78c27d68e98ad09465.tar.gz PSP.git-6c0e98a2727d07e1fbb38b78c27d68e98ad09465.tar.xz PSP.git-6c0e98a2727d07e1fbb38b78c27d68e98ad09465.zip |
Device context implemented
Diffstat (limited to 'Project/ChartView.h')
-rw-r--r-- | Project/ChartView.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Project/ChartView.h b/Project/ChartView.h index 82bb621..cf0b0ea 100644 --- a/Project/ChartView.h +++ b/Project/ChartView.h @@ -68,7 +68,7 @@ class ChartView : public ChartViewBase virtual wxString GetActiveCurvesCSV(); virtual wxTreeItemId GetActivePlotData(wxTreeItemId root, std::vector<PlotData*>& plotDataList); - wxPGProperty* m_pgPropColor = NULL; + wxPGProperty* m_pgPropColor = nullptr; wxTreeItemId m_treeTimeID; @@ -76,12 +76,12 @@ class ChartView : public ChartViewBase std::vector<double> m_time; std::vector<double> m_xAxisValues; - mpWindow* m_mpWindow = NULL; - mpScaleX* m_xaxis = NULL; - mpScaleY* m_yaxis = NULL; - mpText* m_chartTitle = NULL; - mpInfoCoords* m_coords = NULL; - mpInfoLegend* m_leg = NULL; + mpWindow* m_mpWindow = nullptr; + mpScaleX* m_xaxis = nullptr; + mpScaleY* m_yaxis = nullptr; + mpText* m_chartTitle = nullptr; + mpInfoCoords* m_coords = nullptr; + mpInfoLegend* m_leg = nullptr; bool m_hideGrid = true; bool m_showLeg = true; |