Minor fixes in code: remove dead code.
This commit is contained in:
parent
ebdc383cc3
commit
70c2380fc2
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
||||
* Copyright (C) 2004-2017 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2004-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -150,8 +150,6 @@ public:
|
|||
*/
|
||||
void Copy( LIB_FIELD* aTarget ) const;
|
||||
|
||||
void SetFields( const std::vector <LIB_FIELD> aFields );
|
||||
|
||||
/**
|
||||
* @return true if the field value is void (no text in this field)
|
||||
*/
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2018 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -134,7 +134,6 @@ double DXF_IMPORT_PLUGIN::mapWidth( double aDxfWidth )
|
|||
bool DXF_IMPORT_PLUGIN::ImportDxfFile( const wxString& aFile )
|
||||
{
|
||||
DL_Dxf dxf_reader;
|
||||
std::string filename = TO_UTF8( aFile );
|
||||
|
||||
// wxFopen takes care of unicode filenames across platforms
|
||||
FILE* fp = wxFopen( aFile, "rt" );
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/****************************************************************************
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -101,6 +101,7 @@ public:
|
|||
m_SplineTangentStartY = 0.0;
|
||||
m_SplineTangentEndX = 0.0;
|
||||
m_SplineTangentEndY = 0.0;
|
||||
m_BulgeVertex = 0.0;
|
||||
m_SplineKnotsList.clear();
|
||||
m_SplineControlPointList.clear();
|
||||
m_SplineFitPointList.clear();
|
||||
|
|
Loading…
Reference in New Issue