UI development continues...

This commit is contained in:
2016-06-09 07:41:41 +02:00
parent c79d3e74cf
commit 7ac86e1954
18 changed files with 1038 additions and 45 deletions

View File

@@ -68,9 +68,9 @@ class wxEAPTLSConfigPanelBase : public wxPanel
};
///////////////////////////////////////////////////////////////////////////////
/// Class wxTLSCredentialsPanelBase
/// Class wxEAPTLSCredentialsPanelBase
///////////////////////////////////////////////////////////////////////////////
class wxTLSCredentialsPanelBase : public wxPanel
class wxEAPTLSCredentialsPanelBase : public wxPanel
{
private:
@@ -84,13 +84,12 @@ class wxTLSCredentialsPanelBase : public wxPanel
// Virtual event handlers, overide them in your derived class
virtual void OnCertSelect( wxCommandEvent& event ) { event.Skip(); }
virtual void OnRemember( wxCommandEvent& event ) { event.Skip(); }
public:
wxTLSCredentialsPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,-1 ), long style = wxTAB_TRAVERSAL );
~wxTLSCredentialsPanelBase();
wxEAPTLSCredentialsPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,-1 ), long style = wxTAB_TRAVERSAL );
~wxEAPTLSCredentialsPanelBase();
};