From: Steve Brokenshire Date: Mon, 28 Dec 2015 02:25:49 +0000 (+0000) Subject: Replaced the PREF code in CATEGORIES with ProcessIntergerValue. X-Git-Tag: release-0.09~189 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=fc564a1e9459f5243ffdfc98586f67226b8bcfdf;p=xestiaab%2F.git Replaced the PREF code in CATEGORIES with ProcessIntergerValue. --- diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index 0dbc421..37d1361 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -4029,25 +4029,9 @@ void ContactDataObject::ProcessCategory(wxString PropertySeg1, wxString Property CategoriesListPID.insert(std::make_pair(*CategoryCount, 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){ - CategoriesListPref.erase(*CategoryCount); - CategoriesListPref.insert(std::make_pair(*CategoryCount, PriorityNumber)); - - } - + ProcessIntegerValue(this, &CategoriesListPref, &PropertyValue, CategoryCount); + } else if (PropertyName == wxT("LANGUAGE")){ CategoriesListLanguage.erase(*CategoryCount);