Eeschema: minor UI string spelling and coding policy fixes.

This commit is contained in:
Wayne Stambaugh 2017-12-29 10:44:33 -05:00
parent ae7cc5c868
commit 09cff5d8ed
1 changed files with 12 additions and 24 deletions

View File

@ -40,6 +40,7 @@
/* BOM Table Colours */ /* BOM Table Colours */
// Create and show BOM editor // Create and show BOM editor
void InvokeDialogCreateBOMEditor( SCH_EDIT_FRAME* aCaller ) void InvokeDialogCreateBOMEditor( SCH_EDIT_FRAME* aCaller )
{ {
@ -167,6 +168,7 @@ typedef struct
PICKED_ITEMS_LIST items; PICKED_ITEMS_LIST items;
} SheetUndoList; } SheetUndoList;
void DIALOG_BOM_EDITOR::ApplyAllChanges() void DIALOG_BOM_EDITOR::ApplyAllChanges()
{ {
if( !m_bom->HaveFieldsChanged() ) if( !m_bom->HaveFieldsChanged() )
@ -249,9 +251,6 @@ void DIALOG_BOM_EDITOR::ApplyAllChanges()
} }
/**
* Update the window title to reflect the contents of the table
*/
void DIALOG_BOM_EDITOR::UpdateTitle() void DIALOG_BOM_EDITOR::UpdateTitle()
{ {
wxString title; wxString title;
@ -259,7 +258,7 @@ void DIALOG_BOM_EDITOR::UpdateTitle()
if( m_bom->GetColumnGrouping() ) if( m_bom->GetColumnGrouping() )
{ {
title.Printf ( _( "Symbo Table - %u symbols in %u groups" ), title.Printf ( _( "Symbol Table - %u symbols in %u groups" ),
m_bom->ComponentCount(), m_bom->ComponentCount(),
(unsigned int) m_bom->Groups.size() ); (unsigned int) m_bom->Groups.size() );
} }
@ -280,9 +279,6 @@ void DIALOG_BOM_EDITOR::UpdateTitle()
} }
/**
* Load component data from the entire schematic set
*/
void DIALOG_BOM_EDITOR::LoadComponents() void DIALOG_BOM_EDITOR::LoadComponents()
{ {
if( !m_parent ) return; if( !m_parent ) return;
@ -299,9 +295,6 @@ void DIALOG_BOM_EDITOR::LoadComponents()
} }
/**
* Display list of columns (fields)
*/
void DIALOG_BOM_EDITOR::LoadColumnNames() void DIALOG_BOM_EDITOR::LoadColumnNames()
{ {
m_columnListCtrl->DeleteAllItems(); m_columnListCtrl->DeleteAllItems();
@ -375,9 +368,6 @@ void DIALOG_BOM_EDITOR::OnColumnItemToggled( wxDataViewEvent& event )
} }
/**
* Called when the "Group Components" toggle is pressed
*/
void DIALOG_BOM_EDITOR::OnGroupComponentsToggled( wxCommandEvent& event ) void DIALOG_BOM_EDITOR::OnGroupComponentsToggled( wxCommandEvent& event )
{ {
bool group = m_groupComponentsBox->GetValue(); bool group = m_groupComponentsBox->GetValue();
@ -435,7 +425,6 @@ void DIALOG_BOM_EDITOR::OnRevertFieldChanges( wxCommandEvent& event )
} }
// Called when a cell is left-clicked
void DIALOG_BOM_EDITOR::OnTableItemActivated( wxDataViewEvent& event ) void DIALOG_BOM_EDITOR::OnTableItemActivated( wxDataViewEvent& event )
{ {
/* TODO /* TODO
@ -446,7 +435,6 @@ void DIALOG_BOM_EDITOR::OnTableItemActivated( wxDataViewEvent& event )
} }
// Called when a cell is right-clicked
void DIALOG_BOM_EDITOR::OnTableItemContextMenu( wxDataViewEvent& event ) void DIALOG_BOM_EDITOR::OnTableItemContextMenu( wxDataViewEvent& event )
{ {
/* TODO /* TODO