fix misspelled 'an other' -> 'another'

This commit is contained in:
Carsten Schoenert 2018-04-08 12:28:59 +02:00 committed by Wayne Stambaugh
parent 77b3a662fc
commit a11714b1a4
47 changed files with 71 additions and 70 deletions

View File

@ -142,7 +142,7 @@ EDA_DRAW_PANEL::EDA_DRAW_PANEL( EDA_DRAW_FRAME* parent, int id,
m_ignoreMouseEvents = false; m_ignoreMouseEvents = false;
// Be sure a mouse release button event will be ignored when creating the canvas // Be sure a mouse release button event will be ignored when creating the canvas
// if the mouse click was not made inside the canvas (can happen sometimes, when // if the mouse click was not made inside the canvas (can happen sometimes, when
// launching an editor from a double click made in an other frame) // launching a editor from a double click made in another frame)
m_ignoreNextLeftButtonRelease = true; m_ignoreNextLeftButtonRelease = true;
m_mouseCaptureCallback = NULL; m_mouseCaptureCallback = NULL;

View File

@ -166,7 +166,7 @@ int LIB_ID::Parse( const UTF8& aId )
return partNdx; // Error: no library item name. return partNdx; // Error: no library item name.
// Be sure the item name is valid. // Be sure the item name is valid.
// Some chars can be found in legacy files converted files from an other EDA tools. // Some chars can be found in legacy files converted files from other EDA tools.
std::string fpname = aId.substr( partNdx, revNdx-partNdx ); std::string fpname = aId.substr( partNdx, revNdx-partNdx );
ReplaceIllegalFileNameChars( &fpname, '_' ); ReplaceIllegalFileNameChars( &fpname, '_' );
SetLibItemName( UTF8( fpname ) ); SetLibItemName( UTF8( fpname ) );

View File

@ -274,7 +274,7 @@ void DIALOG_PRINT_USING_PRINTER::OnPrintPreview( wxCommandEvent& event )
// We use here wxPreviewFrame_WindowModal option to make the wxPrintPreview frame // We use here wxPreviewFrame_WindowModal option to make the wxPrintPreview frame
// modal for its caller only. // modal for its caller only.
// An other reason is the fact when closing the frame without this option, // another reason is the fact when closing the frame without this option,
// all top level frames are reenabled. // all top level frames are reenabled.
// With this option, only the parent is reenabled. // With this option, only the parent is reenabled.
// Reenabling all top level frames should be made by the parent dialog. // Reenabling all top level frames should be made by the parent dialog.

View File

@ -389,8 +389,9 @@ public:
* Function TestforNonOrphanLabel * Function TestforNonOrphanLabel
* Sheet labels are expected to be connected to a hierarchical label. * Sheet labels are expected to be connected to a hierarchical label.
* Hierarchical labels are expected to be connected to a sheet label. * Hierarchical labels are expected to be connected to a sheet label.
* Global labels are expected to be not orphan (connected to at least one other global label. * Global labels are expected to be not orphan (connected to at least one
* this function tests the connection to an other suitable label * other global label.
* This function tests the connection to another suitable label.
*/ */
void TestforNonOrphanLabel( unsigned aNetItemRef, unsigned aStartNet ); void TestforNonOrphanLabel( unsigned aNetItemRef, unsigned aStartNet );

View File

@ -1008,7 +1008,7 @@ private:
/** /**
* Creates a new segment ( WIRE, BUS ) or terminates the current segment in progress. * Creates a new segment ( WIRE, BUS ) or terminates the current segment in progress.
* *
* If the end of the current segment is on an other segment, place a junction if needed * If the end of the current segment is on a different segment, place a junction if needed
* and terminates the command. If the end of the current segment is on a pin, terminate * and terminates the command. If the end of the current segment is on a pin, terminate
* the command. In all other cases starts a new segment. * the command. In all other cases starts a new segment.
*/ */

View File

@ -407,8 +407,8 @@ void BOARD::chainMarkedSegments( wxPoint aPosition, const LSET& aLayerSet, TRACK
* on other layers and they change the layer mask. They can be a track * on other layers and they change the layer mask. They can be a track
* end or not. They will be analyzer later and vias on terminal points * end or not. They will be analyzer later and vias on terminal points
* of the track will be considered as part of this track if they do not * of the track will be considered as part of this track if they do not
* connect segments of another track together and will be considered as * connect segments of a other track together and will be considered as
* part of an other track when removing the via, the segments of that other * part of a other track when removing the via, the segments of that other
* track are disconnected. * track are disconnected.
*/ */
for( ; ; ) for( ; ; )
@ -1920,16 +1920,16 @@ TRACK* BOARD::MarkTrace( TRACK* aTrace, int* aCount,
continue; continue;
/* If a track is found, this via connects also other segments of /* If a track is found, this via connects also other segments of
* another track. This case happens when a via ends the selected * the other track. This case happens when a via ends the selected
* track but must we consider this via is on the selected track, or * track but must we consider this via is on the selected track, or
* on another track. * on a other track.
* (this is important when selecting a track for deletion: must this * (this is important when selecting a track for deletion: must this
* via be deleted or not?) * via be deleted or not?)
* We consider this via to be on our track if other segments connected * We consider this via to be on our track if other segments connected
* to this via remain connected when removing this via. * to this via remain connected when removing this via.
* We search for all other segments connected together: * We search for all other segments connected together:
* if they are on the same layer, then the via is on the selected track; * if they are on the same layer, then the via is on the selected track;
* if they are on different layers, the via is on another track. * if they are on different layers, the via is on a other track.
*/ */
LAYER_NUM layer = track->GetLayer(); LAYER_NUM layer = track->GetLayer();
@ -1937,8 +1937,8 @@ TRACK* BOARD::MarkTrace( TRACK* aTrace, int* aCount,
{ {
if( layer != track->GetLayer() ) if( layer != track->GetLayer() )
{ {
// The via connects segments of another track: it is removed // The via connects segments of a other track: it is removed
// from list because it is member of another track // from list because it is member of a other track
via->SetState( BUSY, false ); via->SetState( BUSY, false );
break; break;
} }