diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-25 19:29:34 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-25 19:29:34 -0300 |
commit | c3b8370a456085dd835349a8c50e7a9e0a117c45 (patch) | |
tree | eb6af1eaa9a34320d619876386eedc33024eccb3 /Project/ControlEditorBase.h | |
parent | 9154f5ee02766121f7ac8dd756f2e73ae95e1afa (diff) | |
download | PSP.git-c3b8370a456085dd835349a8c50e7a9e0a117c45.tar.gz PSP.git-c3b8370a456085dd835349a8c50e7a9e0a117c45.tar.xz PSP.git-c3b8370a456085dd835349a8c50e7a9e0a117c45.zip |
wxMathPlot implemented on chart view
Diffstat (limited to 'Project/ControlEditorBase.h')
-rw-r--r-- | Project/ControlEditorBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/ControlEditorBase.h b/Project/ControlEditorBase.h index ac89b32..c23aa64 100644 --- a/Project/ControlEditorBase.h +++ b/Project/ControlEditorBase.h @@ -53,6 +53,7 @@ protected: wxStatusBar* m_statusBarMain; protected: + virtual void OnKeyDown(wxKeyEvent& event) { event.Skip(); } virtual void OnImportClick(wxCommandEvent& event) { event.Skip(); } virtual void OnExportClick(wxCommandEvent& event) { event.Skip(); } virtual void OnPaint(wxPaintEvent& event) { event.Skip(); } @@ -64,7 +65,6 @@ protected: virtual void OnMouseMotion(wxMouseEvent& event) { event.Skip(); } virtual void OnScroll(wxMouseEvent& event) { event.Skip(); } virtual void OnIdle(wxIdleEvent& event) { event.Skip(); } - virtual void OnKeyDown(wxKeyEvent& event) { event.Skip(); } public: wxToolBar* GetToolbarMain() { return m_toolbarMain; } |