// 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.
//
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();
}
frmContactEditorVendor *frameCEVen = new frmContactEditorVendor ( this );
- frameCEVen->SetupPointers(&VendorList,
- &VendorListPEN,
- &VendorListElement,
+ frameCEVen->SetupPointers(&ContactEditorData.VendorList,
+ &ContactEditorData.VendorListPEN,
+ &ContactEditorData.VendorListElement,
lboVendorNamespace,
intSelectedData);
frameCEVen->SetEditorMode(TRUE);
lboVendorNamespace->DeleteItem(longSelected);
- DeleteMapData(intSelectedData, &VendorList, &VendorListPEN,
- &VendorListElement);
+ DeleteMapData(intSelectedData, &ContactEditorData.VendorList, &ContactEditorData.VendorListPEN,
+ &ContactEditorData.VendorListElement);
}
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();
}
frmContactEditorXToken *frameCEXT = new frmContactEditorXToken ( this );
- frameCEXT->SetupPointers(&XTokenList,
- &XTokenListTokens,
+ frameCEXT->SetupPointers(&ContactEditorData.XTokenList,
+ &ContactEditorData.XTokenListTokens,
lboXToken,
intSelectedData);
frameCEXT->SetEditorMode(TRUE);
lboXToken->DeleteItem(longSelected);
- DeleteMapData(intSelectedData, &XTokenList, &XTokenListTokens);
+ DeleteMapData(intSelectedData, &ContactEditorData.XTokenList, &ContactEditorData.XTokenListTokens);
}