From: Steve Brokenshire Date: Mon, 28 Dec 2015 02:05:18 +0000 (+0000) Subject: Replaced PREF code in IMPP for ProcessIntegerValue. X-Git-Tag: release-0.09~198 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=0a749c36a873e196f41a5f8c7da3f09592bf24fb;p=xestiaab%2F.git Replaced PREF code in IMPP for ProcessIntegerValue. --- diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index 607f28c..23c53f3 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -2318,23 +2318,7 @@ void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, } 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){ - - IMListPref->erase(*IMCount); - IMListPref->insert(std::make_pair(*IMCount, PriorityNumber)); - - } + ProcessIntegerValue(this, IMListPref, &PropertyValue, IMCount); } else {