X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditor-General.cpp;h=65e933b1cbe4ef83d757a53d86e068c7b54d72dc;hb=1ac8a2e1820e63c723629a88a250ad6b104ad2ce;hp=f02eb83b6eec6c8a7082e19b002a4a17882b9cc3;hpb=5da8a3e5c0191cca60e0778e671674dbb12d8266;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditor-General.cpp b/source/contacteditor/frmContactEditor-General.cpp index f02eb83..65e933b 100644 --- a/source/contacteditor/frmContactEditor-General.cpp +++ b/source/contacteditor/frmContactEditor-General.cpp @@ -282,6 +282,7 @@ void frmContactEditor::AddGeneralIM( wxCommandEvent& event ) &ContactEditorData.GeneralIMListAltID, &ContactEditorData.GeneralIMListPID, &ContactEditorData.GeneralIMListType, + &ContactEditorData.GeneralIMListTypeInfo, &ContactEditorData.GeneralIMListTokens, &ContactEditorData.GeneralIMListMediatype, &ContactEditorData.GeneralIMListPref, @@ -302,12 +303,13 @@ void frmContactEditor::ModifyGeneralIM( wxCommandEvent& event ) &intSelectedData)){ return; } - + frmContactEditorIM *frameCEIM = new frmContactEditorIM ( this ); frameCEIM->SetupPointers(&ContactEditorData.GeneralIMList, &ContactEditorData.GeneralIMListAltID, &ContactEditorData.GeneralIMListPID, &ContactEditorData.GeneralIMListType, + &ContactEditorData.GeneralIMListTypeInfo, &ContactEditorData.GeneralIMListTokens, &ContactEditorData.GeneralIMListMediatype, &ContactEditorData.GeneralIMListPref, @@ -334,8 +336,9 @@ void frmContactEditor::DeleteGeneralIM( wxCommandEvent& event ) DeleteMapData(intSelectedData, &ContactEditorData.GeneralIMList, &ContactEditorData.GeneralIMListAltID, &ContactEditorData.GeneralIMListPID, - &ContactEditorData.GeneralIMListType, &ContactEditorData.GeneralIMListTokens, - &ContactEditorData.GeneralIMListMediatype, &ContactEditorData.GeneralIMListPref); + &ContactEditorData.GeneralIMListType, &ContactEditorData.GeneralIMListTypeInfo, + &ContactEditorData.GeneralIMListTokens, &ContactEditorData.GeneralIMListMediatype, + &ContactEditorData.GeneralIMListPref); } @@ -350,6 +353,7 @@ void frmContactEditor::AddGeneralTelephone( wxCommandEvent& event ) &ContactEditorData.GeneralTelephoneListAltID, &ContactEditorData.GeneralTelephoneListPID, &ContactEditorData.GeneralTelephoneListType, + &ContactEditorData.GeneralTelephoneListTypeInfo, &ContactEditorData.GeneralTelephoneListTokens, &ContactEditorData.GeneralTelephoneListPref, lboTelephone, @@ -375,6 +379,7 @@ void frmContactEditor::ModifyGeneralTelephone( wxCommandEvent& event ) &ContactEditorData.GeneralTelephoneListAltID, &ContactEditorData.GeneralTelephoneListPID, &ContactEditorData.GeneralTelephoneListType, + &ContactEditorData.GeneralTelephoneListTypeInfo, &ContactEditorData.GeneralTelephoneListTokens, &ContactEditorData.GeneralTelephoneListPref, lboTelephone, @@ -400,8 +405,8 @@ void frmContactEditor::DeleteGeneralTelephone( wxCommandEvent& event ) DeleteMapData(intSelectedData, &ContactEditorData.GeneralTelephoneList, &ContactEditorData.GeneralTelephoneListAltID, &ContactEditorData.GeneralTelephoneListPID, - &ContactEditorData.GeneralTelephoneListType, &ContactEditorData.GeneralTelephoneListTokens, - &ContactEditorData.GeneralTelephoneListPref); + &ContactEditorData.GeneralTelephoneListType, &ContactEditorData.GeneralTelephoneListTypeInfo, + &ContactEditorData.GeneralTelephoneListTokens, &ContactEditorData.GeneralTelephoneListPref); }