From: Steve Brokenshire Date: Sun, 6 Mar 2016 23:40:23 +0000 (+0000) Subject: Added comments to the functions in frmInvalidSSLCertificate. X-Git-Tag: release-0.11~174 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=53733f60f6c76e040717f355ef85377f69fd50ed;p=xestiaab%2F.git Added comments to the functions in frmInvalidSSLCertificate. Comments added for: frmInvalidSSLCertificate::Accept frmInvalidSSLCertificate::Reject frmInvalidSSLCertificate::ViewCertificates frmInvalidSSLCertificate::LoadData frmInvalidSSLCertificate::LoadDataNew --- diff --git a/source/frmInvalidSSLCertificate.cpp b/source/frmInvalidSSLCertificate.cpp index 13e50de..8937802 100644 --- a/source/frmInvalidSSLCertificate.cpp +++ b/source/frmInvalidSSLCertificate.cpp @@ -28,18 +28,29 @@ frmInvalidSSLCertificateADT( parent ) void frmInvalidSSLCertificate::Accept( wxCommandEvent& event ) { + + // Button 'Accept' was pressed. + intResult = 1; Close(); + } void frmInvalidSSLCertificate::Reject( wxCommandEvent& event ) { + + // Button 'Reject' was pressed. + intResult = 2; Close(); + } void frmInvalidSSLCertificate::ViewCertificates( wxCommandEvent& event ) { + + // Button 'View Certificates' was pressed. + frmSSLCertificate *frameSSLCert = new frmSSLCertificate ( this ); frameSSLCert->StartCertFrom(0); frameSSLCert->SetupCerts(CertData); @@ -47,12 +58,15 @@ void frmInvalidSSLCertificate::ViewCertificates( wxCommandEvent& event ) delete frameSSLCert; frameSSLCert = NULL; + } void frmInvalidSSLCertificate::LoadData(SSLCertCollection CertDataInc, wxString AccountNameInc) { + // Load the invalid SSL certificate dialog. + AccountName = AccountNameInc; CertData = CertDataInc; @@ -72,6 +86,8 @@ void frmInvalidSSLCertificate::LoadDataNew(SSLCertCollection CertDataInc, wxString DomainNameInc) { + // Load the invalid SSL certificate dialog for a new account. + AccountName = DomainNameInc; CertData = CertDataInc; @@ -90,6 +106,8 @@ void frmInvalidSSLCertificate::LoadDataNew(SSLCertCollection CertDataInc, int frmInvalidSSLCertificate::GetResult() { + // Get the result of which button was pressed in the dialog. + return intResult; } \ No newline at end of file