From: Steve Brokenshire Date: Mon, 28 Dec 2015 02:15:05 +0000 (+0000) Subject: Replaced the PREF code in URL with ProcessIntegerValue. X-Git-Tag: release-0.09~194 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=7bd0c2c82c3574e95245fec7dc8a1ae2e184324a;hp=1d102a7479f32a7068a0b873c3bf226d65371625;p=xestiaab%2F.git Replaced the PREF code in URL with ProcessIntegerValue. --- diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index 0c09b88..caf08ee 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -3259,25 +3259,9 @@ void ContactDataObject::ProcessURL(wxString PropertySeg1, wxString PropertySeg2, WebsiteListPID->insert(std::make_pair(*URLCount, 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){ - WebsiteListPref->erase(*URLCount); - WebsiteListPref->insert(std::make_pair(*URLCount, PriorityNumber)); - - } - + ProcessIntegerValue(this, WebsiteListPref, &PropertyValue, URLCount); + } else if (PropertyName == wxT("MEDIATYPE")){ WebsiteListMediatype->erase(*URLCount);