From: Steve Brokenshire Date: Mon, 28 Dec 2015 02:23:21 +0000 (+0000) Subject: Replaced the PREF code in NOTE with ProcessIntegerValue. X-Git-Tag: release-0.09~190 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=6f598bbd145051583c42546af5e4350be6372d0f;p=xestiaab%2F.git Replaced the PREF code in NOTE with ProcessIntegerValue. --- diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index 11e7549..0dbc421 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -3900,25 +3900,9 @@ void ContactDataObject::ProcessNote(wxString PropertySeg1, wxString PropertySeg2 NoteListPID->insert(std::make_pair(*NoteCount, 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){ - NoteListPref->erase(*NoteCount); - NoteListPref->insert(std::make_pair(*NoteCount, PriorityNumber)); - - } - + ProcessIntegerValue(this, NoteListPref, &PropertyValue, NoteCount); + } else if (PropertyName == wxT("LANGUAGE")){ NoteListLanguage->erase(*NoteCount);