From e4f29d358c78d441d08732bd9b447d735f5c3af6 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 9 Jan 2021 12:08:04 +0000 Subject: [PATCH] Formatting. --- common/footprint_info.cpp | 7 +++---- pcbnew/load_select_footprint.cpp | 30 +++++++++++++----------------- 2 files changed, 16 insertions(+), 21 deletions(-) diff --git a/common/footprint_info.cpp b/common/footprint_info.cpp index 381e4af3bf..6b125fdc23 100644 --- a/common/footprint_info.cpp +++ b/common/footprint_info.cpp @@ -92,10 +92,9 @@ bool operator<( const FOOTPRINT_INFO& lhs, const FOOTPRINT_INFO& rhs ) void FOOTPRINT_LIST::DisplayErrors( wxTopLevelWindow* aWindow ) { - // @todo: go to a more HTML !! ? centric output, possibly with - // recommendations for remedy of errors. Add numeric error codes - // to PARSE_ERROR, and switch on them for remedies, etc. Full - // access is provided to everything in every exception! + // @todo: go to a more HTML !
! ? centric output, possibly with recommendations + // for remedy of errors. Add numeric error codes to PARSE_ERROR, and switch on them for + // remedies, etc. Full access is provided to everything in every exception! HTML_MESSAGE_BOX dlg( aWindow, _( "Load Error" ) ); diff --git a/pcbnew/load_select_footprint.cpp b/pcbnew/load_select_footprint.cpp index 3db74962cf..1602bdd328 100644 --- a/pcbnew/load_select_footprint.cpp +++ b/pcbnew/load_select_footprint.cpp @@ -43,9 +43,7 @@ using namespace std::placeholders; #include #include #include -#include #include -#include #include #include #include @@ -120,16 +118,15 @@ bool FOOTPRINT_EDIT_FRAME::LoadFootprintFromBoard( FOOTPRINT* aFootprint ) AddFootprintToBoard( newFootprint ); - // Clear references to any net info, because the footprint editor - // does know any thing about nets handled by the current edited board. - // Morever we do not want to save any reference to an unknown net when - // saving the footprint in lib cache - // so we force the ORPHANED dummy net info for all pads + // Clear references to any net info, because the footprint editor does know any thing about + // nets handled by the current edited board. + // Morever we do not want to save any reference to an unknown net when saving the footprint + // in lib cache so we force the ORPHANED dummy net info for all pads. newFootprint->ClearAllNets(); GetCanvas()->GetViewControls()->SetCrossHairCursorPosition( VECTOR2D( 0, 0 ), false ); PlaceFootprint( newFootprint ); - newFootprint->SetPosition( wxPoint( 0, 0 ) ); // cursor in GAL may not be initialized at the moment + newFootprint->SetPosition( wxPoint( 0, 0 ) ); // cursor in GAL may not yet be initialized // Put it on FRONT layer, // because this is the default in Footprint Editor, and in libs @@ -179,7 +176,7 @@ wxString PCB_BASE_FRAME::SelectFootprintFromLibBrowser() // (for this reason delete operator cannot be used blindly with "top level" windows) // so gives a slice of time to delete the viewer frame. // This is especially important in OpenGL mode to avoid recreating context before - // the old one is deleted + // the old one is deleted. wxSafeYield(); } @@ -212,13 +209,12 @@ FOOTPRINT* PCB_BASE_FRAME::SelectFootprintFromLibTree( LIB_ID aPreselect ) _( "Loading Footprint Libraries" ), 3 ); GFootprintList.ReadFootprintFiles( fpTable, nullptr, progressReporter ); bool cancel = progressReporter->WasCancelled(); - // Force immediate deletion of the WX_PROGRESS_REPORTER - // ( do not use Destroy(), or use Destroy() followed by wxSafeYield() ) - // because on Windows, APP_PROGRESS_DIALOG or WX_PROGRESS_REPORTER has some side - // effects on the event loop manager. - // A side effect is the call of ShowModal() or ShowQuasiModal() of a dialog following - // the use of a WX_PROGRESS_REPORTER - // has a broken behavior (incorrect modal or quasi modal behavior). + + // Force immediate deletion of the WX_PROGRESS_REPORTER. Do not use Destroy(), or use + // Destroy() followed by wxSafeYield() because on Windows, APP_PROGRESS_DIALOG and + // WX_PROGRESS_REPORTER have some side effects on the event loop manager. For instance, a + // subsequent call to ShowModal() or ShowQuasiModal() for a dialog following the use of a + // WX_PROGRESS_REPORTER results in incorrect modal or quasi modal behavior. delete progressReporter; if( cancel ) @@ -434,7 +430,7 @@ bool FOOTPRINT_EDIT_FRAME::SaveLibraryAs( const wxString& aLibraryPath ) } -static FOOTPRINT* s_FootprintInitialCopy = NULL; // Copy of footprint for abort/undo command +static FOOTPRINT* s_FootprintInitialCopy = NULL; // Copy of footprint for abort/undo command static PICKED_ITEMS_LIST s_PickedList; // A pick-list to save initial footprint // and dragged tracks