diff --git a/lib/EAPBase_UI/include/EAP_UI.h b/lib/EAPBase_UI/include/EAP_UI.h index 13aaec3..5e9bc95 100644 --- a/lib/EAPBase_UI/include/EAP_UI.h +++ b/lib/EAPBase_UI/include/EAP_UI.h @@ -889,12 +889,12 @@ protected: m_password ->Enable(false); } - return wxEAPCredentialsPromptPanel<_Tcred, wxEAPCredentialsPromptPassPanelBase>::TransferDataToWindow(); + return wxEAPCredentialsPromptPanel<_Tcred, wxPasswordCredentialsPanelBase>::TransferDataToWindow(); } virtual bool TransferDataFromWindow() { - if (!wxEAPCredentialsPromptPanel<_Tcred, wxEAPCredentialsPromptPassPanelBase>::TransferDataFromWindow()) + if (!wxEAPCredentialsPromptPanel<_Tcred, wxPasswordCredentialsPanelBase>::TransferDataFromWindow()) return false; m_cred.m_identity = m_identity->GetValue(); diff --git a/lib/EAPBase_UI/res/wxEAP_UI.cpp b/lib/EAPBase_UI/res/wxEAP_UI.cpp index 5521415..f486085 100644 --- a/lib/EAPBase_UI/res/wxEAP_UI.cpp +++ b/lib/EAPBase_UI/res/wxEAP_UI.cpp @@ -349,7 +349,7 @@ wxEAPCredentialsConfigPanelBase::~wxEAPCredentialsConfigPanelBase() } -wxEAPCredentialsPromptPassPanelBase::wxEAPCredentialsPromptPassPanelBase( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) : wxEAPCredentialsPanelBase( parent, id, pos, size, style ) +wxPasswordCredentialsPanelBase::wxPasswordCredentialsPanelBase( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) : wxEAPCredentialsPanelBase( parent, id, pos, size, style ) { m_sb_credentials = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Client Credentials") ), wxVERTICAL ); @@ -403,7 +403,7 @@ wxEAPCredentialsPromptPassPanelBase::wxEAPCredentialsPromptPassPanelBase( wxWind this->Layout(); } -wxEAPCredentialsPromptPassPanelBase::~wxEAPCredentialsPromptPassPanelBase() +wxPasswordCredentialsPanelBase::~wxPasswordCredentialsPanelBase() { } diff --git a/lib/EAPBase_UI/res/wxEAP_UI.fbp b/lib/EAPBase_UI/res/wxEAP_UI.fbp index 9332af4..dfcee37 100644 --- a/lib/EAPBase_UI/res/wxEAP_UI.fbp +++ b/lib/EAPBase_UI/res/wxEAP_UI.fbp @@ -2377,7 +2377,7 @@ wxID_ANY - wxEAPCredentialsPromptPassPanelBase + wxPasswordCredentialsPanelBase 500,-1 wxEAPCredentialsPanelBase; ../include/wxEAP_UIBase.h diff --git a/lib/EAPBase_UI/res/wxEAP_UI.h b/lib/EAPBase_UI/res/wxEAP_UI.h index b875a1e..a0715a0 100644 --- a/lib/EAPBase_UI/res/wxEAP_UI.h +++ b/lib/EAPBase_UI/res/wxEAP_UI.h @@ -192,9 +192,9 @@ class wxEAPCredentialsConfigPanelBase : public wxPanel }; /////////////////////////////////////////////////////////////////////////////// -/// Class wxEAPCredentialsPromptPassPanelBase +/// Class wxPasswordCredentialsPanelBase /////////////////////////////////////////////////////////////////////////////// -class wxEAPCredentialsPromptPassPanelBase : public wxEAPCredentialsPanelBase +class wxPasswordCredentialsPanelBase : public wxEAPCredentialsPanelBase { private: @@ -210,8 +210,8 @@ class wxEAPCredentialsPromptPassPanelBase : public wxEAPCredentialsPanelBase public: - wxEAPCredentialsPromptPassPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,-1 ), long style = wxTAB_TRAVERSAL ); - ~wxEAPCredentialsPromptPassPanelBase(); + wxPasswordCredentialsPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,-1 ), long style = wxTAB_TRAVERSAL ); + ~wxPasswordCredentialsPanelBase(); }; diff --git a/lib/MSCHAPv2_UI/include/MSCHAPv2_UI.h b/lib/MSCHAPv2_UI/include/MSCHAPv2_UI.h index 8d7e3e4..3ecc78f 100644 --- a/lib/MSCHAPv2_UI/include/MSCHAPv2_UI.h +++ b/lib/MSCHAPv2_UI/include/MSCHAPv2_UI.h @@ -24,7 +24,7 @@ /// /// MSCHAPv2 credential configuration panel /// -typedef wxEAPCredentialsConfigPanel > wxMSCHAPv2CredentialsConfigPanel; +typedef wxEAPCredentialsConfigPanel > wxMSCHAPv2CredentialsConfigPanel; /// /// MSCHAPv2 configuration panel @@ -34,7 +34,7 @@ class wxMSCHAPv2ConfigPanel; /// /// MSCHAPv2 credential entry panel /// -typedef wxPasswordCredentialsPanel wxMSCHAPv2CredentialsPanel; +typedef wxPasswordCredentialsPanel wxMSCHAPv2CredentialsPanel; #pragma once diff --git a/lib/PAP_UI/include/PAP_UI.h b/lib/PAP_UI/include/PAP_UI.h index 4a6f95c..da2acf5 100644 --- a/lib/PAP_UI/include/PAP_UI.h +++ b/lib/PAP_UI/include/PAP_UI.h @@ -24,7 +24,7 @@ /// /// PAP credential configuration panel /// -typedef wxEAPCredentialsConfigPanel > wxPAPCredentialsConfigPanel; +typedef wxEAPCredentialsConfigPanel > wxPAPCredentialsConfigPanel; /// /// PAP configuration panel @@ -34,7 +34,7 @@ class wxPAPConfigPanel; /// /// PAP credential entry panel /// -typedef wxPasswordCredentialsPanel wxPAPCredentialsPanel; +typedef wxPasswordCredentialsPanel wxPAPCredentialsPanel; #pragma once