Loading .bzrignore +2 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,8 @@ install_manifest.txt Documentation/doxygen *.cmake *.bak pcbnew/pcb_plot_params_keywords.cpp pcbnew/pcb_plot_params_lexer.h common/pcb_plot_params_keywords.cpp common/pcb_plot_params_lexer.h pcbnew/specctra_keywords.cpp pcbnew/specctra_lexer.h new/html Loading CHANGELOG.txt +8 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,14 @@ KiCad ChangeLog 2011 Please add newer entries at the top, list the date and your name with email address. 2011-Dec-9 UPDATE Dick Hollenbeck <dick@softplc.com> ================================================================================ ++PCBNew * added BOARD::GetPad(int), made BOARD::m_NetInfo private * more kicad_plugin work. 2011-Dec-5 UPDATE Dick Hollenbeck <dick@softplc.com> ================================================================================ ++PCBNew Loading CMakeLists.txt +6 −2 Original line number Diff line number Diff line Loading @@ -276,9 +276,13 @@ add_subdirectory(template) #================================================ find_package(Doxygen) if(DOXYGEN_FOUND) add_custom_target( doxygen-docs ${DOXYGEN_EXECUTABLE} add_custom_target( doxygen-docs ${CMAKE_COMMAND} -E remove_directory Documentation/doxygen COMMAND ${DOXYGEN_EXECUTABLE} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS Doxyfile ) DEPENDS Doxyfile COMMENT "building doxygen docs into directory Documentation/doxygen/html" ) else(DOXYGEN_FOUND) message( STATUS "WARNING: Doxygen not found - doxygen-docs (Source Docs) target not created" ) endif() Loading include/dlist.h +1 −1 Original line number Diff line number Diff line Loading @@ -113,7 +113,7 @@ public: * Function GetCount * returns the number of elements in the list. */ unsigned GetCount() { return count; } unsigned GetCount() const { return count; } #if defined(DEBUG) void VerifyListIntegrity(); Loading pcbnew/board.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -203,9 +203,9 @@ void PlaceCells( BOARD* aPcb, int net_code, int flag ) via_marge = clearance + (viaSize / 2); // Place PADS on matrix routing: for( unsigned i = 0; i < aPcb->GetPadsCount(); ++i ) for( unsigned i = 0; i < aPcb->GetPadCount(); ++i ) { D_PAD* pad = aPcb->m_NetInfo->GetPad( i ); D_PAD* pad = aPcb->GetPad( i ); if( net_code != pad->GetNet() || (flag & FORCE_PADS) ) { Loading Loading
.bzrignore +2 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,8 @@ install_manifest.txt Documentation/doxygen *.cmake *.bak pcbnew/pcb_plot_params_keywords.cpp pcbnew/pcb_plot_params_lexer.h common/pcb_plot_params_keywords.cpp common/pcb_plot_params_lexer.h pcbnew/specctra_keywords.cpp pcbnew/specctra_lexer.h new/html Loading
CHANGELOG.txt +8 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,14 @@ KiCad ChangeLog 2011 Please add newer entries at the top, list the date and your name with email address. 2011-Dec-9 UPDATE Dick Hollenbeck <dick@softplc.com> ================================================================================ ++PCBNew * added BOARD::GetPad(int), made BOARD::m_NetInfo private * more kicad_plugin work. 2011-Dec-5 UPDATE Dick Hollenbeck <dick@softplc.com> ================================================================================ ++PCBNew Loading
CMakeLists.txt +6 −2 Original line number Diff line number Diff line Loading @@ -276,9 +276,13 @@ add_subdirectory(template) #================================================ find_package(Doxygen) if(DOXYGEN_FOUND) add_custom_target( doxygen-docs ${DOXYGEN_EXECUTABLE} add_custom_target( doxygen-docs ${CMAKE_COMMAND} -E remove_directory Documentation/doxygen COMMAND ${DOXYGEN_EXECUTABLE} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS Doxyfile ) DEPENDS Doxyfile COMMENT "building doxygen docs into directory Documentation/doxygen/html" ) else(DOXYGEN_FOUND) message( STATUS "WARNING: Doxygen not found - doxygen-docs (Source Docs) target not created" ) endif() Loading
include/dlist.h +1 −1 Original line number Diff line number Diff line Loading @@ -113,7 +113,7 @@ public: * Function GetCount * returns the number of elements in the list. */ unsigned GetCount() { return count; } unsigned GetCount() const { return count; } #if defined(DEBUG) void VerifyListIntegrity(); Loading
pcbnew/board.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -203,9 +203,9 @@ void PlaceCells( BOARD* aPcb, int net_code, int flag ) via_marge = clearance + (viaSize / 2); // Place PADS on matrix routing: for( unsigned i = 0; i < aPcb->GetPadsCount(); ++i ) for( unsigned i = 0; i < aPcb->GetPadCount(); ++i ) { D_PAD* pad = aPcb->m_NetInfo->GetPad( i ); D_PAD* pad = aPcb->GetPad( i ); if( net_code != pad->GetNet() || (flag & FORCE_PADS) ) { Loading