X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditorWebsites.cpp;h=de4b05798f44ba1d49108934738c8aca54cc6648;hb=4443fd0e346fdea4770cca961274b03147f210fe;hp=d46744a9f25c722db54b54675457df6edab62616;hpb=b642c1677d8875a30fead84262513131658a488c;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditorWebsites.cpp b/source/contacteditor/frmContactEditorWebsites.cpp index d46744a..de4b057 100644 --- a/source/contacteditor/frmContactEditorWebsites.cpp +++ b/source/contacteditor/frmContactEditorWebsites.cpp @@ -26,21 +26,30 @@ frmContactEditorWebsites::frmContactEditorWebsites( wxWindow* parent ) : frmContactEditorWebsitesADT( parent ) { + + // Setup the window. + EditorMode = FALSE; sliPriority->Disable(); + } void frmContactEditorWebsites::EnablePriority( wxCommandEvent& event ) { + + // Enable the priority setting. + if (chkUsePref->IsChecked()){ sliPriority->Enable(); } else { sliPriority->Disable(); } + } void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) { + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -147,10 +156,12 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) this->Close(); } + } void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType) { + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -206,7 +217,11 @@ void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType void frmContactEditorWebsites::CloseWindow( wxCommandEvent& event ) { + + // Close the window. + this->Close(); + } void frmContactEditorWebsites::SetupPointers(std::map *WebsiteList, @@ -220,6 +235,8 @@ void frmContactEditorWebsites::SetupPointers(std::map *WebsiteLis int WebsiteIndex ) { + // Setup the pointers. + WebsiteListPtr = WebsiteList; WebsiteListAltIDPtr = WebsiteListAltID; WebsiteListPIDPtr = WebsiteListPID;