From 2ddf8705afd705556e33412bcfaad4a0531d0ae2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 13 Dec 2020 00:09:22 +0100 Subject: [PATCH] Make wxGenericCredentialEntryDialog non-copyable No real changes, just a bit of extra safety. --- include/wx/generic/creddlgg.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/generic/creddlgg.h b/include/wx/generic/creddlgg.h index 64c4e97199..d2f58d6a1b 100644 --- a/include/wx/generic/creddlgg.h +++ b/include/wx/generic/creddlgg.h @@ -45,6 +45,8 @@ private: void Init(const wxString& message, const wxString& user, const wxString& password); + + wxDECLARE_NO_COPY_CLASS(wxGenericCredentialEntryDialog); }; // Add this typedef as long as the generic version is the only one available