diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-03-09 00:55:49 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-03-09 00:55:49 +0000 |
| commit | 6d770c4c8c79569871edc20253f29f9ea00539e6 (patch) | |
| tree | ee21cd67d784084cef98c0dfb3b8c4319dc1935f /src/wx/recreate_chain_dialog.h | |
| parent | 67ff21a970b9c680e243eec9e7129a256898e156 (diff) | |
Check for signer chains containing UTF8-marked strings and offer
to fix them on startup (#1218).
Diffstat (limited to 'src/wx/recreate_chain_dialog.h')
| -rw-r--r-- | src/wx/recreate_chain_dialog.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/wx/recreate_chain_dialog.h b/src/wx/recreate_chain_dialog.h new file mode 100644 index 000000000..287e65767 --- /dev/null +++ b/src/wx/recreate_chain_dialog.h @@ -0,0 +1,32 @@ +/* + Copyright (C) 2018 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include "question_dialog.h" +#include <wx/wx.h> +#include <list> + +class RecreateChainDialog : public QuestionDialog +{ +public: + RecreateChainDialog (wxWindow* parent); + +private: + void shut_up (wxCommandEvent& ev); +}; |
