Commit 53cd19a6 authored by unknown's avatar unknown Committed by jean-pierre charras
Browse files

VRML export rewritten

parent bd174ebf
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -140,7 +140,6 @@ set( PCBNEW_EXPORTERS
    exporters/gen_drill_report_files.cpp
    exporters/gen_modules_placefile.cpp
    exporters/gendrill_Excellon_writer.cpp
    exporters/vrml_board.cpp
    )

set( PCBNEW_AUTOROUTER_SRCS
+1 −1
Original line number Diff line number Diff line
@@ -568,7 +568,7 @@ bool Export_IDF3( BOARD* aPcb, const wxString& aFullFileName, bool aUseThou )

        ok = false;
    }
    catch( std::exception& e )
    catch( const std::exception& e )
    {
        wxString msg;
        msg << _( "IDF Export Failed:\n" ) << FROM_UTF8( e.what() );
Loading