From: Steve Brokenshire Date: Sun, 13 Mar 2016 11:59:28 +0000 (+0000) Subject: Indented code properly contacteditor/frmContactEditor-Key.cpp X-Git-Tag: release-0.11~86 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=491926291f008129afe98913e5737cd7e253b7cf;p=xestiaab%2F.git Indented code properly contacteditor/frmContactEditor-Key.cpp --- diff --git a/source/contacteditor/frmContactEditor-Key.cpp b/source/contacteditor/frmContactEditor-Key.cpp index 1242984..b72677e 100644 --- a/source/contacteditor/frmContactEditor-Key.cpp +++ b/source/contacteditor/frmContactEditor-Key.cpp @@ -21,69 +21,74 @@ void frmContactEditor::AddKey( wxCommandEvent& event ) { - int intResult = 0; + + int intResult = 0; - frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this ); - frameCEKey->SetEditorMode(FALSE); - intResult = GetLastInt(&ContactEditorData.KeyList); - frameCEKey->SetupPointers(&ContactEditorData.KeyList, - &ContactEditorData.KeyListAltID, - &ContactEditorData.KeyListPID, - &ContactEditorData.KeyListKeyType, - &ContactEditorData.KeyListDataType, - &ContactEditorData.KeyListType, - &ContactEditorData.KeyListTokens, - &ContactEditorData.KeyListPref, - lboKeys, - (intValueSeek)); - frameCEKey->ShowModal(); - delete frameCEKey; - frameCEKey = NULL; + frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this ); + frameCEKey->SetEditorMode(FALSE); + intResult = GetLastInt(&ContactEditorData.KeyList); + frameCEKey->SetupPointers(&ContactEditorData.KeyList, + &ContactEditorData.KeyListAltID, + &ContactEditorData.KeyListPID, + &ContactEditorData.KeyListKeyType, + &ContactEditorData.KeyListDataType, + &ContactEditorData.KeyListType, + &ContactEditorData.KeyListTokens, + &ContactEditorData.KeyListPref, + lboKeys, + (intValueSeek)); + frameCEKey->ShowModal(); + delete frameCEKey; + frameCEKey = NULL; + } void frmContactEditor::ModifyKey( wxCommandEvent& event ) { - long longSelected = -1; - int intSelectedData = 0; + + long longSelected = -1; + int intSelectedData = 0; - if (!GetSelectedItem(lboKeys, - &longSelected, - &intSelectedData)){ - return; - } + if (!GetSelectedItem(lboKeys, + &longSelected, + &intSelectedData)){ + return; + } - frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this ); - frameCEKey->SetupPointers(&ContactEditorData.KeyList, - &ContactEditorData.KeyListAltID, - &ContactEditorData.KeyListPID, - &ContactEditorData.KeyListKeyType, - &ContactEditorData.KeyListDataType, - &ContactEditorData.KeyListType, - &ContactEditorData.KeyListTokens, - &ContactEditorData.KeyListPref, - lboKeys, - intSelectedData); - frameCEKey->SetEditorMode(TRUE); - frameCEKey->ShowModal(); - delete frameCEKey; - frameCEKey = NULL; + frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this ); + frameCEKey->SetupPointers(&ContactEditorData.KeyList, + &ContactEditorData.KeyListAltID, + &ContactEditorData.KeyListPID, + &ContactEditorData.KeyListKeyType, + &ContactEditorData.KeyListDataType, + &ContactEditorData.KeyListType, + &ContactEditorData.KeyListTokens, + &ContactEditorData.KeyListPref, + lboKeys, + intSelectedData); + frameCEKey->SetEditorMode(TRUE); + frameCEKey->ShowModal(); + delete frameCEKey; + frameCEKey = NULL; + } void frmContactEditor::DeleteKey( wxCommandEvent& event ) { - long longSelected = -1; - int intSelectedData = 0; + + long longSelected = -1; + int intSelectedData = 0; - if (!GetSelectedItem(lboKeys, - &longSelected, - &intSelectedData)){ - return; - } + if (!GetSelectedItem(lboKeys, + &longSelected, + &intSelectedData)){ + return; + } - lboKeys->DeleteItem(longSelected); + lboKeys->DeleteItem(longSelected); - DeleteMapData(intSelectedData, &ContactEditorData.KeyList, &ContactEditorData.KeyListAltID, - &ContactEditorData.KeyListPID, &ContactEditorData.KeyListKeyType, &ContactEditorData.KeyListDataType, &ContactEditorData.KeyListType, - &ContactEditorData.KeyListTokens, &ContactEditorData.KeyListPref); + DeleteMapData(intSelectedData, &ContactEditorData.KeyList, &ContactEditorData.KeyListAltID, + &ContactEditorData.KeyListPID, &ContactEditorData.KeyListKeyType, &ContactEditorData.KeyListDataType, &ContactEditorData.KeyListType, + &ContactEditorData.KeyListTokens, &ContactEditorData.KeyListPref); }