~andrew-plumb/kicad/kicad

« back to all changes in this revision

Viewing changes to pcbnew/dialogs/dialog_plot.cpp

  • Committer: Andrew Plumb
  • Date: 2013-10-16 12:24:11 UTC
  • mfrom: (4379.1.10 testing)
  • Revision ID: andrew@plumb.org-20131016122411-qb5tokbqbgs6t1jn
Updating from main testing branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
    case PLOT_FORMAT_HPGL:
95
95
        m_plotFormatOpt->SetSelection( 4 );
96
96
        break;
 
97
 
 
98
    case PLOT_FORMAT_PDF:
 
99
        m_plotFormatOpt->SetSelection( 5 );
 
100
        break;
97
101
    }
98
102
 
99
103
    msg = ReturnStringFromValue( g_UserUnit, m_brdSettings.m_SolderMaskMargin, true );
610
614
    {
611
615
        msg = ReturnStringFromValue( g_UserUnit, tempOptions.GetLineWidth() );
612
616
        m_linesWidth->SetValue( msg );
613
 
        msg.Printf( _( "Default linewidth constrained!\n" ) );
 
617
        msg.Printf( _( "Default line width constrained!\n" ) );
614
618
        m_messagesBox->AppendText( msg );
615
619
    }
616
620
 
790
794
 
791
795
            LOCALE_IO toggle;
792
796
            BOARD *board = m_parent->GetBoard();
793
 
            PLOTTER *plotter = StartPlotBoard(board, &m_plotOpts,
794
 
                                              fn.GetFullPath(),
795
 
                                              wxEmptyString );
 
797
            PLOTTER *plotter = StartPlotBoard( board, &m_plotOpts,
 
798
                                               fn.GetFullPath(),
 
799
                                               wxEmptyString );
796
800
 
797
801
            // Print diags in messages box:
798
802
            wxString msg;
 
803
 
799
804
            if( plotter )
800
805
            {
801
806
                PlotOneBoardLayer( board, plotter, layer, m_plotOpts );