From: Steve Brokenshire Date: Sun, 13 Mar 2016 10:39:27 +0000 (+0000) Subject: Added comments to describe functions for frmContactEditorEmail X-Git-Tag: release-0.11~98 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=c0eed9af8fb5ea6688e7f1b16fbe23b5c0322e19 Added comments to describe functions for frmContactEditorEmail --- diff --git a/source/contacteditor/frmContactEditorEmail.cpp b/source/contacteditor/frmContactEditorEmail.cpp index 407b63b..aaaab18 100644 --- a/source/contacteditor/frmContactEditorEmail.cpp +++ b/source/contacteditor/frmContactEditorEmail.cpp @@ -24,21 +24,32 @@ frmContactEditorEmail::frmContactEditorEmail( wxWindow* parent ) : frmContactEditorEmailADT( parent ) { + + // Setup the window. + EditorMode = FALSE; sliPriority->Disable(); + } void frmContactEditorEmail::EnablePriority( wxCommandEvent& event ) { + + // Enable/disable the priority setting. + if (chkUsePref->IsChecked()){ sliPriority->Enable(); } else { sliPriority->Disable(); } + } void frmContactEditorEmail::ProcessData( wxCommandEvent& event ) { + + // Process action. + long ListCtrlIndex; if (EditorMode == FALSE){ @@ -148,12 +159,18 @@ void frmContactEditorEmail::ProcessData( wxCommandEvent& event ) void frmContactEditorEmail::CloseWindow( wxCommandEvent& event ) { + + // Close this window. + this->Close(); + } void frmContactEditorEmail::SetEditorMode(bool EditMode, SectionType SectType) { + // Set the editor mode. + // Set the editor mode for adding or editing an email address. if (EditMode == FALSE){ @@ -224,4 +241,5 @@ void frmContactEditorEmail::SetupPointers(std::map *EmailList, EmailListPrefPtr = EmailListPref; EmailListCtrlPtr = EmailListCtrl; EmailListIndex = EmailIndex; + } \ No newline at end of file