From c0eed9af8fb5ea6688e7f1b16fbe23b5c0322e19 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 13 Mar 2016 10:39:27 +0000 Subject: [PATCH] Added comments to describe functions for frmContactEditorEmail --- source/contacteditor/frmContactEditorEmail.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 -- 2.39.2