X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditor-Other.cpp;h=d1af11fae1490279a1f145134b13474660b9a956;hb=bdb1cb146a16ae7f8e15aa9c9f084705a5249973;hp=4bd4575c8e75069ae1847f9994278755119b1b66;hpb=da64d37d0a13895554e4ad945c46dd0af6d1c0e6;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditor-Other.cpp b/source/contacteditor/frmContactEditor-Other.cpp index 4bd4575..d1af11f 100644 --- a/source/contacteditor/frmContactEditor-Other.cpp +++ b/source/contacteditor/frmContactEditor-Other.cpp @@ -1,6 +1,6 @@ // frmContactEditor-Other.cpp - frmContactEditor Other tab subroutines. // -// (c) 2012-2015 Xestia Software Development. +// (c) 2012-2016 Xestia Software Development. // // This file is part of Xestia Address Book. // @@ -26,10 +26,10 @@ void frmContactEditor::AddVendorNamespace( wxCommandEvent& event ) frmContactEditorVendor *frameCEVen = new frmContactEditorVendor ( this ); frameCEVen->SetEditorMode(FALSE); - intResult = GetLastInt(&VendorList); - frameCEVen->SetupPointers(&VendorList, - &VendorListPEN, - &VendorListElement, + intResult = GetLastInt(&ContactEditorData.VendorList); + frameCEVen->SetupPointers(&ContactEditorData.VendorList, + &ContactEditorData.VendorListPEN, + &ContactEditorData.VendorListElement, lboVendorNamespace, (intValueSeek)); frameCEVen->ShowModal(); @@ -49,9 +49,9 @@ void frmContactEditor::ModifyVendorNamespace( wxCommandEvent& event ) } frmContactEditorVendor *frameCEVen = new frmContactEditorVendor ( this ); - frameCEVen->SetupPointers(&VendorList, - &VendorListPEN, - &VendorListElement, + frameCEVen->SetupPointers(&ContactEditorData.VendorList, + &ContactEditorData.VendorListPEN, + &ContactEditorData.VendorListElement, lboVendorNamespace, intSelectedData); frameCEVen->SetEditorMode(TRUE); @@ -73,8 +73,8 @@ void frmContactEditor::DeleteVendorNamespace( wxCommandEvent& event ) lboVendorNamespace->DeleteItem(longSelected); - DeleteMapData(intSelectedData, &VendorList, &VendorListPEN, - &VendorListElement); + DeleteMapData(intSelectedData, &ContactEditorData.VendorList, &ContactEditorData.VendorListPEN, + &ContactEditorData.VendorListElement); } @@ -84,9 +84,9 @@ void frmContactEditor::AddXToken( wxCommandEvent& event ) frmContactEditorXToken *frameCEXT = new frmContactEditorXToken ( this ); frameCEXT->SetEditorMode(FALSE); - intResult = GetLastInt(&XTokenList); - frameCEXT->SetupPointers(&XTokenList, - &XTokenListTokens, + intResult = GetLastInt(&ContactEditorData.XTokenList); + frameCEXT->SetupPointers(&ContactEditorData.XTokenList, + &ContactEditorData.XTokenListTokens, lboXToken, (intValueSeek)); frameCEXT->ShowModal(); @@ -106,8 +106,8 @@ void frmContactEditor::ModifyXToken( wxCommandEvent& event ) } frmContactEditorXToken *frameCEXT = new frmContactEditorXToken ( this ); - frameCEXT->SetupPointers(&XTokenList, - &XTokenListTokens, + frameCEXT->SetupPointers(&ContactEditorData.XTokenList, + &ContactEditorData.XTokenListTokens, lboXToken, intSelectedData); frameCEXT->SetEditorMode(TRUE); @@ -129,6 +129,6 @@ void frmContactEditor::DeleteXToken( wxCommandEvent& event ) lboXToken->DeleteItem(longSelected); - DeleteMapData(intSelectedData, &XTokenList, &XTokenListTokens); + DeleteMapData(intSelectedData, &ContactEditorData.XTokenList, &ContactEditorData.XTokenListTokens); }