From: Steve Brokenshire Date: Sun, 10 Jan 2016 19:32:54 +0000 (+0000) Subject: Added DataType to the Geoposition variables in ContactDataObject. X-Git-Tag: release-0.09~86 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=20c258c0cc4524fada364e6fc2abd23852c7cd76;p=xestiaab%2F.git Added DataType to the Geoposition variables in ContactDataObject. --- diff --git a/source/contacteditor/cdo/ContactDataObject.cpp b/source/contacteditor/cdo/ContactDataObject.cpp index afa3a42..5c625c1 100644 --- a/source/contacteditor/cdo/ContactDataObject.cpp +++ b/source/contacteditor/cdo/ContactDataObject.cpp @@ -2399,6 +2399,7 @@ void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString Proper GeopositionListPID = &GeneralGeographyListPID; GeopositionListTokens = &GeneralGeographyListTokens; GeopositionListMediatype = &GeneralGeographyListMediatype; + GeopositionListDataType = &GeneralGeographyListDataType; GeopositionListPref = &GeneralGeographyListPref; break; case PROPERTY_HOME: @@ -2408,6 +2409,7 @@ void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString Proper GeopositionListPID = &HomeGeographyListPID; GeopositionListTokens = &HomeGeographyListTokens; GeopositionListMediatype = &HomeGeographyListMediatype; + GeopositionListDataType = &HomeGeographyListDataType; GeopositionListPref = &HomeGeographyListPref; break; case PROPERTY_WORK: @@ -2416,7 +2418,8 @@ void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString Proper GeopositionListAltID = &BusinessGeographyListAltID; GeopositionListPID = &BusinessGeographyListPID; GeopositionListTokens = &BusinessGeographyListTokens; - GeopositionListMediatype = &BusinessGeographyListMediatype; + GeopositionListMediatype = &BusinessGeographyListMediatype; + GeopositionListDataType = &BusinessGeographyListDataType; GeopositionListPref = &BusinessGeographyListPref; break; } diff --git a/source/contacteditor/cdo/ContactDataObject.h b/source/contacteditor/cdo/ContactDataObject.h index c481f8d..ebca7b6 100644 --- a/source/contacteditor/cdo/ContactDataObject.h +++ b/source/contacteditor/cdo/ContactDataObject.h @@ -218,6 +218,7 @@ class ContactDataObject{ std::map GeneralGeographyListType; std::map GeneralGeographyListTokens; std::map GeneralGeographyListMediatype; + std::map GeneralGeographyListDataType; std::map GeneralGeographyListPref; std::map GeneralRelatedList; @@ -342,6 +343,7 @@ class ContactDataObject{ std::map HomeGeographyListType; std::map HomeGeographyListTokens; std::map HomeGeographyListMediatype; + std::map HomeGeographyListDataType; std::map HomeGeographyListPref; std::map HomeWebsiteList; @@ -457,6 +459,7 @@ class ContactDataObject{ std::map BusinessGeographyListType; std::map BusinessGeographyListTokens; std::map BusinessGeographyListMediatype; + std::map BusinessGeographyListDataType; std::map BusinessGeographyListPref; std::map BusinessWebsiteList;