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/Workspace.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/Workspace.h')
-rw-r--r-- | Project/Workspace.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Project/Workspace.h b/Project/Workspace.h index deac1e4..ad0c09d 100644 --- a/Project/Workspace.h +++ b/Project/Workspace.h @@ -106,7 +106,7 @@ class Workspace : public WorkspaceBase }; Workspace(); - Workspace(wxWindow* parent, wxString name = wxEmptyString, wxStatusBar* statusBar = NULL, wxGLContext* sharedGLContext = NULL); + Workspace(wxWindow* parent, wxString name = wxEmptyString, wxStatusBar* statusBar = nullptr, wxGLContext* sharedGLContext = nullptr); virtual ~Workspace(); wxString GetName() const { return m_name; } @@ -176,10 +176,10 @@ protected: void SetViewport(); void UpdateStatusBar(); - wxGLContext* m_glContext = NULL; - wxStatusBar* m_statusBar = NULL; - Camera* m_camera = NULL; - wxTipWindow* m_tipWindow = NULL; + wxGLContext* m_glContext = nullptr; + wxStatusBar* m_statusBar = nullptr; + Camera* m_camera = nullptr; + wxTipWindow* m_tipWindow = nullptr; wxString m_name; WorkspaceMode m_mode = WorkspaceMode::MODE_EDIT; @@ -194,7 +194,7 @@ protected: wxRect2DDouble m_selectionRect; wxPoint2DDouble m_startSelRect; - PropertiesData* m_properties = NULL; + PropertiesData* m_properties = nullptr; std::vector<double> m_stabilityTimeVector; |