~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to pcbnew/class_edge_mod.cpp

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
{
58
58
    m_Shape = aShape;
59
59
    m_Angle = 0;
60
 
    m_Width = 120;
 
60
    m_Layer = SILKSCREEN_N_FRONT;
61
61
}
62
62
 
63
63
 
251
251
    aList.push_back( MSG_PANEL_ITEM( _( "Value" ), module->GetValue(), BLUE ) );
252
252
    msg.Printf( wxT( "%8.8lX" ), module->GetTimeStamp() );
253
253
    aList.push_back( MSG_PANEL_ITEM( _( "TimeStamp" ), msg, BROWN ) );
254
 
    aList.push_back( MSG_PANEL_ITEM( _( "Mod Layer" ), 
 
254
    aList.push_back( MSG_PANEL_ITEM( _( "Mod Layer" ),
255
255
                     module->GetLayerName(), RED ) );
256
 
    aList.push_back( MSG_PANEL_ITEM( _( "Seg Layer" ), 
 
256
    aList.push_back( MSG_PANEL_ITEM( _( "Seg Layer" ),
257
257
                     GetLayerName(), RED ) );
258
258
    msg = ::CoordinateToString( m_Width );
259
259
    aList.push_back( MSG_PANEL_ITEM( _( "Width" ), msg, BLUE ) );