Fix a few Coverity warnings and typo is dialogs
This commit is contained in:
parent
7f5c1f873d
commit
5e41763d83
|
@ -81,7 +81,7 @@ bool SCH_FIELD_VALIDATOR::Validate( wxWindow *aParent )
|
|||
case VALUE: fieldName = _( "value" ); break;
|
||||
case FOOTPRINT: fieldName = _( "footprint" ); break;
|
||||
case DATASHEET: fieldName = _( "data sheet" ); break;
|
||||
default: fieldName = _( "user definded" ); break;
|
||||
default: fieldName = _( "user defined" ); break;
|
||||
};
|
||||
|
||||
wxString errorMsg;
|
||||
|
|
|
@ -70,6 +70,7 @@ public:
|
|||
m_Color = RED;
|
||||
m_plotter = NULL;
|
||||
m_callback = NULL;
|
||||
m_isClipped = false;
|
||||
}
|
||||
|
||||
void SetPlotter( PLOTTER* aPlotter )
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#ifndef CLASS_EDA_RECT_H
|
||||
#define CLASS_EDA_RECT_H
|
||||
|
||||
#include <wx/gdicmn.h>
|
||||
|
||||
/**
|
||||
* Class EDA_RECT
|
||||
* handles the component boundary box.
|
||||
|
|
|
@ -55,6 +55,15 @@ BOARD_NETLIST_UPDATER::BOARD_NETLIST_UPDATER ( PCB_EDIT_FRAME *aFrame, BOARD *aB
|
|||
{
|
||||
m_reporter = &NULL_REPORTER::GetInstance();
|
||||
m_undoList = new PICKED_ITEMS_LIST;
|
||||
|
||||
m_deleteSinglePadNets = true;
|
||||
m_deleteUnusedComponents = false;
|
||||
m_isDryRun = false;
|
||||
m_replaceFootprints = true;
|
||||
m_lookupByTimestamp = false;
|
||||
|
||||
m_warningCount = 0;
|
||||
m_errorCount = 0;
|
||||
}
|
||||
|
||||
BOARD_NETLIST_UPDATER::~BOARD_NETLIST_UPDATER ()
|
||||
|
|
|
@ -205,7 +205,7 @@ DIALOG_PAD_PROPERTIES_BASE::DIALOG_PAD_PROPERTIES_BASE( wxWindow* parent, wxWind
|
|||
m_staticText23->Wrap( -1 );
|
||||
fgSizerShapeType->Add( m_staticText23, 0, wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP, 5 );
|
||||
|
||||
wxString m_trapDeltaDirChoiceChoices[] = { _("Horizotal"), _("Vertical") };
|
||||
wxString m_trapDeltaDirChoiceChoices[] = { _("Horizontal"), _("Vertical") };
|
||||
int m_trapDeltaDirChoiceNChoices = sizeof( m_trapDeltaDirChoiceChoices ) / sizeof( wxString );
|
||||
m_trapDeltaDirChoice = new wxChoice( m_panelGeneral, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_trapDeltaDirChoiceNChoices, m_trapDeltaDirChoiceChoices, 0 );
|
||||
m_trapDeltaDirChoice->SetSelection( 0 );
|
||||
|
@ -223,9 +223,9 @@ DIALOG_PAD_PROPERTIES_BASE::DIALOG_PAD_PROPERTIES_BASE( wxWindow* parent, wxWind
|
|||
m_staticline9 = new wxStaticLine( m_panelGeneral, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
|
||||
fgSizerShapeType->Add( m_staticline9, 0, wxEXPAND | wxALL, 5 );
|
||||
|
||||
m_staticTextCornerSizeRatio = new wxStaticText( m_panelGeneral, wxID_ANY, _("Corner size ( % of width):"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_staticTextCornerSizeRatio = new wxStaticText( m_panelGeneral, wxID_ANY, _("Corner size ( percent of width):"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_staticTextCornerSizeRatio->Wrap( -1 );
|
||||
m_staticTextCornerSizeRatio->SetToolTip( _("Corner radius in % of the pad width.\nThe width is the smaller value between size X and size Y\nThe max value is 50%") );
|
||||
m_staticTextCornerSizeRatio->SetToolTip( _("Corner radius in percent of the pad width.\nThe width is the smaller value between size X and size Y\nThe max value is 50 percent ") );
|
||||
|
||||
fgSizerShapeType->Add( m_staticTextCornerSizeRatio, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
|
|
|
@ -3838,7 +3838,7 @@
|
|||
<property name="caption"></property>
|
||||
<property name="caption_visible">1</property>
|
||||
<property name="center_pane">0</property>
|
||||
<property name="choices">"Horizotal" "Vertical"</property>
|
||||
<property name="choices">"Horizontal" "Vertical"</property>
|
||||
<property name="close_button">1</property>
|
||||
<property name="context_help"></property>
|
||||
<property name="context_menu">1</property>
|
||||
|
@ -4193,7 +4193,7 @@
|
|||
<property name="gripper">0</property>
|
||||
<property name="hidden">0</property>
|
||||
<property name="id">wxID_ANY</property>
|
||||
<property name="label">Corner size ( % of width):</property>
|
||||
<property name="label">Corner size ( percent of width):</property>
|
||||
<property name="max_size"></property>
|
||||
<property name="maximize_button">0</property>
|
||||
<property name="maximum_size"></property>
|
||||
|
@ -4214,7 +4214,7 @@
|
|||
<property name="style"></property>
|
||||
<property name="subclass"></property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip">Corner radius in % of the pad width.
The width is the smaller value between size X and size Y
The max value is 50%</property>
|
||||
<property name="tooltip">Corner radius in percent of the pad width.
The width is the smaller value between size X and size Y
The max value is 50 percent </property>
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
|
|
Loading…
Reference in New Issue