Cleaning code and update CMI

This commit is contained in:
Loic Guegan 2023-05-10 07:29:55 +02:00
parent 9a632b7d41
commit 298714449a
5 changed files with 9 additions and 7 deletions

View file

@ -23,9 +23,12 @@ public:
}
private:
void OnExit(wxCommandEvent &event) { Close(true); }
void OnExit(wxCommandEvent &event) {
(void)event; // Disable unused variable warning
Close(true); }
void OnPaint(wxPaintEvent &event) {
(void)event; // Disable unused variable warning
wxPaintDC current_dc(this);
dc = &current_dc;