Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Replaced string processing in IMPP with ProcessStringValue.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Mon, 28 Dec 2015 04:22:03 +0000 (04:22 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Mon, 28 Dec 2015 04:22:03 +0000 (04:22 +0000)
source/contacteditor/ContactDataObject.cpp

index ac80f15..0668659 100644 (file)
@@ -2180,6 +2180,7 @@ void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2,
        wxString PropertyValue;
        wxString PropertyTokens;
        bool FirstToken = TRUE;
+       bool PropertyMatched = FALSE;
        
        for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
        intiter != SplitPoints.end(); ++intiter){
@@ -2196,41 +2197,30 @@ void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2,
                
                CaptureString(&PropertyValue, FALSE);
                
+               ProcessStringValue(&PropertyName, "ALTID", IMListAltID, &PropertyValue, IMCount, &PropertyMatched);
+               ProcessStringValue(&PropertyName, "PID", IMListPID, &PropertyValue, IMCount, &PropertyMatched);
+               ProcessStringValue(&PropertyName, "MEDIATYPE", IMListMediatype, &PropertyValue, IMCount, &PropertyMatched);
+               ProcessIntegerValue(&PropertyName, "PREF", IMListPref, &PropertyValue, IMCount, &PropertyMatched);
+               
                // Process properties.
                
-               if (PropertyName == wxT("ALTID")){
-
-                       IMListAltID->erase(*IMCount);
-                       IMListAltID->insert(std::make_pair(*IMCount, PropertyValue));
+               if (PropertyMatched == TRUE){
+                       
+                       PropertyMatched = FALSE;
+                       continue;
                
-               } else if (PropertyName == wxT("PID")){
-
-                       IMListPID->erase(*IMCount);
-                       IMListPID->insert(std::make_pair(*IMCount, PropertyValue));
+               }
                
-               } else if (PropertyName == wxT("MEDIATYPE")){
-
-                       IMListMediatype->erase(*IMCount);
-                       IMListMediatype->insert(std::make_pair(*IMCount, PropertyValue));
+               if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
                
-               } else if (PropertyName == wxT("PREF")){
+                       if (FirstToken == TRUE){
                        
-                       ProcessIntegerValue(IMListPref, &PropertyValue, IMCount);
-               
-               } else {
-               
-                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                               PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                               FirstToken = FALSE;
                        
-                               if (FirstToken == TRUE){
-                               
-                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
-                                       FirstToken = FALSE;
-                               
-                               } else {
-                               
-                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
-                               
-                               }
+                       } else {
+                       
+                               PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
                        
                        }
                
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy