summaryrefslogtreecommitdiffstats
path: root/Project/ChartView.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2020-06-13 00:01:53 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2020-06-13 00:01:53 -0300
commit6c0e98a2727d07e1fbb38b78c27d68e98ad09465 (patch)
tree12764ca986c9a1943bc2012b0cc751471773f6ee /Project/ChartView.h
parent196389a70ef3a03aa8764b9532812a17dd55014b (diff)
downloadPSP.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.h14
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;