diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-10-26 13:42:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-10-26 13:42:40 +0200 |
| commit | 5cf687959afd75b0251b87d742b1594f6a8a7991 (patch) | |
| tree | ab00d9ff1119ffa6d45e7c666837262e9c82db39 /src/wx | |
| parent | 079c27ee419585a6325499d587614820ffdc9939 (diff) | |
Missing Destroy() call.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/kdm_output_panel.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc index 60dce70ca..369d8a25f 100644 --- a/src/wx/kdm_output_panel.cc +++ b/src/wx/kdm_output_panel.cc @@ -244,6 +244,7 @@ KDMOutputPanel::make ( if (d->ShowModal() == wxID_CANCEL) { proceed = false; } + d->Destroy (); } } } |
