Fixes after merging 2.3.2/2.3.3 changes from stable to master.

This commit is contained in:
Vojtech Bubnik 2021-08-13 14:53:13 +02:00
parent add67d769a
commit d569789285
3 changed files with 17 additions and 33 deletions

View file

@ -114,6 +114,22 @@ public:
#endif
// Generic info dialog, used for displaying exceptions
class InfoDialog : public MsgDialog
{
public:
InfoDialog(wxWindow *parent, const wxString &title, const wxString &msg);
InfoDialog(InfoDialog&&) = delete;
InfoDialog(const InfoDialog&) = delete;
InfoDialog&operator=(InfoDialog&&) = delete;
InfoDialog&operator=(const InfoDialog&) = delete;
virtual ~InfoDialog() = default;
private:
wxString msg;
};
}
}