From: Steve Brokenshire Date: Mon, 28 Dec 2015 02:11:27 +0000 (+0000) Subject: Replaced code for PREF in GEO with ProcessIntegerValue. X-Git-Tag: release-0.09~196 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=11ee13bf6a867c8d918f4ec193d147bb06966fb8;p=xestiaab%2F.git Replaced code for PREF in GEO with ProcessIntegerValue. --- diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index e9784dc..238484a 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -2871,24 +2871,8 @@ void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString Proper GeopositionListMediatype->insert(std::make_pair(*GeographicCount, PropertyValue)); } else if (PropertyName == wxT("PREF")){ - - int PriorityNumber = 0; - bool ValidNumber = TRUE; - - try{ - PriorityNumber = std::stoi(PropertyValue.ToStdString()); - } - - catch(std::invalid_argument &e){ - ValidNumber = FALSE; - } - if (ValidNumber == TRUE){ - - GeopositionListPref->erase(*GeographicCount); - GeopositionListPref->insert(std::make_pair(*GeographicCount, PriorityNumber)); - - } + ProcessIntegerValue(this, GeopositionListPref, &PropertyValue, GeographicCount); } else {