From 6dcb2ed929d861d7ca12bd2f646392b2dfaa9a51 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 13 Mar 2016 16:01:37 +0000 Subject: [PATCH] Indented code properly contacteditor/frmContactEditor-Category.cpp --- .../frmContactEditor-Category.cpp | 105 ++++++++++-------- 1 file changed, 57 insertions(+), 48 deletions(-) diff --git a/source/contacteditor/frmContactEditor-Category.cpp b/source/contacteditor/frmContactEditor-Category.cpp index aa7dad9..ef3439c 100644 --- a/source/contacteditor/frmContactEditor-Category.cpp +++ b/source/contacteditor/frmContactEditor-Category.cpp @@ -21,66 +21,75 @@ void frmContactEditor::AddCategory( wxCommandEvent& event ) { - int intResult = 0; + + int intResult = 0; - frmContactEditorCategory *frameCECategory = new frmContactEditorCategory ( this ); - frameCECategory->SetEditorMode(FALSE); - intResult = GetLastInt(&ContactEditorData.CategoriesList); - frameCECategory->SetupPointers(&ContactEditorData.CategoriesList, - &ContactEditorData.CategoriesListAltID, - &ContactEditorData.CategoriesListPID, - &ContactEditorData.CategoriesListType, - &ContactEditorData.CategoriesListTokens, - &ContactEditorData.CategoriesListPref, - lboCategories, - (intValueSeek)); - frameCECategory->ShowModal(); - delete frameCECategory; - frameCECategory = NULL; + frmContactEditorCategory *frameCECategory = new frmContactEditorCategory ( this ); + frameCECategory->SetEditorMode(FALSE); + intResult = GetLastInt(&ContactEditorData.CategoriesList); + frameCECategory->SetupPointers(&ContactEditorData.CategoriesList, + &ContactEditorData.CategoriesListAltID, + &ContactEditorData.CategoriesListPID, + &ContactEditorData.CategoriesListType, + &ContactEditorData.CategoriesListTokens, + &ContactEditorData.CategoriesListPref, + lboCategories, + (intValueSeek)); + frameCECategory->ShowModal(); + delete frameCECategory; + frameCECategory = NULL; + } void frmContactEditor::ModifyCategory( wxCommandEvent& event ) { - long longSelected = -1; - int intSelectedData = 0; + + long longSelected = -1; + int intSelectedData = 0; - if (!GetSelectedItem(lboCategories, - &longSelected, - &intSelectedData)){ - return; - } + if (!GetSelectedItem(lboCategories, + &longSelected, + &intSelectedData)){ + + return; + + } - frmContactEditorCategory *frameCECategory = new frmContactEditorCategory ( this ); - frameCECategory->SetupPointers(&ContactEditorData.CategoriesList, - &ContactEditorData.CategoriesListAltID, - &ContactEditorData.CategoriesListPID, - &ContactEditorData.CategoriesListType, - &ContactEditorData.CategoriesListTokens, - &ContactEditorData.CategoriesListPref, - lboCategories, - intSelectedData); - frameCECategory->SetEditorMode(TRUE); - frameCECategory->ShowModal(); - delete frameCECategory; - frameCECategory = NULL; + frmContactEditorCategory *frameCECategory = new frmContactEditorCategory ( this ); + frameCECategory->SetupPointers(&ContactEditorData.CategoriesList, + &ContactEditorData.CategoriesListAltID, + &ContactEditorData.CategoriesListPID, + &ContactEditorData.CategoriesListType, + &ContactEditorData.CategoriesListTokens, + &ContactEditorData.CategoriesListPref, + lboCategories, + intSelectedData); + frameCECategory->SetEditorMode(TRUE); + frameCECategory->ShowModal(); + delete frameCECategory; + frameCECategory = NULL; + } void frmContactEditor::DeleteCategory( wxCommandEvent& event ) { - long longSelected = -1; - int intSelectedData = 0; - - if (!GetSelectedItem(lboCategories, - &longSelected, - &intSelectedData)){ - return; - } + + long longSelected = -1; + int intSelectedData = 0; - lboCategories->DeleteItem(longSelected); + if (!GetSelectedItem(lboCategories, + &longSelected, + &intSelectedData)){ + + return; + + } - DeleteMapData(intSelectedData, &ContactEditorData.CategoriesList, - &ContactEditorData.CategoriesListAltID, &ContactEditorData.CategoriesListPID, - &ContactEditorData.CategoriesListType, &ContactEditorData.CategoriesListTokens, - &ContactEditorData.CategoriesListPref); + lboCategories->DeleteItem(longSelected); + DeleteMapData(intSelectedData, &ContactEditorData.CategoriesList, + &ContactEditorData.CategoriesListAltID, &ContactEditorData.CategoriesListPID, + &ContactEditorData.CategoriesListType, &ContactEditorData.CategoriesListTokens, + &ContactEditorData.CategoriesListPref); + } \ No newline at end of file -- 2.39.2