Commit 71ca194b authored by charras's avatar charras
Browse files

overbar patch merged mainly in eechema/class_pin.cpp. Some cleanup and compil problem fixes.

parent c6501e7d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -493,6 +493,7 @@ void Pcb3D_GLCanvas::Draw3D_DrawText( TEXTE_PCB* text )
                     text->m_Text, text->m_Orient, text->m_Size,
                     text->m_HJustify, text->m_VJustify,
                     text->m_Width, text->m_Italic,
                     true,
                     Draw3dTextSegm );
}

+0 −0

File moved.

+11 −1
Original line number Diff line number Diff line
@@ -4,7 +4,17 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.

2009-xxx-xx UPDATE Wayne Stambaugh <stambaughw@verizon.net>
2009-apr-06 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++common:
    overbar patch merged in drawtxt.cpp and mainly in eechema/class_pin.cpp
    some cleanup and some compiling problems fixed.

++eeschema:
    changed dialog_eeschema_config.cpp to use wxFormBuilder to create
    the corresponding equivalent dialog in dialog_eeschema_config_fbp.cpp

2009-apr-05 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
++All
  * Removed all instances #ifdef eda_global, COMMON_GLOBL, and MAIN in order
+0 −0

File moved.

+6 −5
Original line number Diff line number Diff line
@@ -738,18 +738,19 @@ void WinEDA_DrawPanel::DrawBackGround( wxDC* DC )
        for( ii = 0; ; ii++ )
        {
            xg =  wxRound(ii * screen_grid_size.x);
            if( xg > size.x )
                break;
            int xpos = org.x + xg;

            xpos = GRMapX( xpos );
            for( jj = 0; ; jj++ )
            {
                yg = wxRound(jj * screen_grid_size.y);
                GRPutPixel( &m_ClipBox, DC, xpos, org.y + yg, color );
                if( yg > size.y )
                    break;
                int ypos = org.y + yg;
                DC->DrawPoint( xpos, GRMapY( ypos ) );
            }

            if( xg > size.x )
                break;
         }
    }

Loading