Commit fff34db7 authored by charras's avatar charras
Browse files

pcbnew: added oblong thermal relief for oblong pads (from a contribution) ....

pcbnew: added oblong thermal relief for oblong pads (from a contribution) . added contributor to kicad list
parent 7beb0f22
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -99,6 +99,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
    info.AddDeveloper( SetMsg( wxT( "Jerry Jacobs <jerkejacobs@gmail.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Vesa Solonen <vesa.solonen@hut.fi>" ) ) );

    /* Add document writers */
    info.AddDocWriter( wxT( "Jean-Pierre Charras <jean-pierre.charras@inpg.fr>" ) );
+2 −1
Original line number Diff line number Diff line
@@ -400,7 +400,8 @@ void SCH_COMPONENT::SwapData( SCH_COMPONENT* copyitem )

    m_Fields.swap( copyitem->m_Fields );    // std::vector's swap()

    // Reparent items after copying data (after swap() m_Pareny member does not points the right parent):
    // Reparent items after copying data
    // (after swap(), m_Parent member does not points the right parent):
    for( int ii = 0; ii < copyitem->GetFieldCount();  ++ii )
    {
       copyitem->GetField(ii)->m_Parent = copyitem;
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ COMMON_GLOBL wxString g_BuildVersion
#    include "config.h"
     (wxT(KICAD_SVN_VERSION))
#  else
     (wxT("(20081008-unstable)")) /* main program version */
     (wxT("(20081019-unstable)")) /* main program version */
#  endif
#endif
;
@@ -20,7 +20,7 @@ COMMON_GLOBL wxString g_BuildAboutVersion
#    include "config.h"
     (wxT(KICAD_ABOUT_VERSION))
#  else
     (wxT("(20081008-unstable)")) /* svn date & rev (normally overridden) */
     (wxT("(20081019-unstable)")) /* svn date & rev (normally overridden) */
#  endif
#endif
;
+884 B (160 KiB)

File changed.

No diff preview for this file type.

+1852 −1816

File changed.

Preview size limit exceeded, changes collapsed.

Loading