Rename files
This commit is contained in:
parent
17ce87a7a5
commit
a088ea84fd
|
@ -14,12 +14,11 @@ include_directories(
|
||||||
|
|
||||||
|
|
||||||
set( KICAD_SRCS
|
set( KICAD_SRCS
|
||||||
class_treeprojectfiles.cpp
|
|
||||||
class_treeproject_item.cpp
|
|
||||||
commandframe.cpp
|
commandframe.cpp
|
||||||
dialogs/dialog_template_selector_base.cpp
|
dialogs/dialog_template_selector_base.cpp
|
||||||
dialogs/dialog_template_selector.cpp
|
dialogs/dialog_template_selector.cpp
|
||||||
files-io.cpp
|
files-io.cpp
|
||||||
|
import_project.cpp
|
||||||
kicad.cpp
|
kicad.cpp
|
||||||
mainframe.cpp
|
mainframe.cpp
|
||||||
menubar.cpp
|
menubar.cpp
|
||||||
|
@ -27,7 +26,8 @@ set( KICAD_SRCS
|
||||||
prjconfig.cpp
|
prjconfig.cpp
|
||||||
project_template.cpp
|
project_template.cpp
|
||||||
tree_project_frame.cpp
|
tree_project_frame.cpp
|
||||||
import_project.cpp
|
treeprojectfiles.cpp
|
||||||
|
treeproject_item.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if( MINGW )
|
if( MINGW )
|
||||||
|
|
|
@ -40,8 +40,8 @@
|
||||||
#include <menus_helpers.h>
|
#include <menus_helpers.h>
|
||||||
#include <wildcards_and_files_ext.h>
|
#include <wildcards_and_files_ext.h>
|
||||||
|
|
||||||
#include "class_treeproject_item.h"
|
#include "treeproject_item.h"
|
||||||
#include "class_treeprojectfiles.h"
|
#include "treeprojectfiles.h"
|
||||||
#include "pgm_kicad.h"
|
#include "pgm_kicad.h"
|
||||||
|
|
||||||
#include "tree_project_frame.h"
|
#include "tree_project_frame.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 1992-2012 KiCad Developers, see change_log.txt for contributors.
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file class_treeproject_item.cpp
|
* @file treeproject_item.cpp
|
||||||
*
|
*
|
||||||
* @brief Class TREEPROJECT_ITEM is a derived class from wxTreeItemData and
|
* @brief Class TREEPROJECT_ITEM is a derived class from wxTreeItemData and
|
||||||
* store info about a file or directory shown in the KiCad tree project files
|
* store info about a file or directory shown in the KiCad tree project files
|
||||||
|
@ -34,11 +34,11 @@
|
||||||
#include <gestfich.h>
|
#include <gestfich.h>
|
||||||
#include <executable_names.h>
|
#include <executable_names.h>
|
||||||
|
|
||||||
#include "class_treeprojectfiles.h"
|
#include "treeprojectfiles.h"
|
||||||
#include "pgm_kicad.h"
|
#include "pgm_kicad.h"
|
||||||
#include "tree_project_frame.h"
|
#include "tree_project_frame.h"
|
||||||
|
|
||||||
#include "class_treeproject_item.h"
|
#include "treeproject_item.h"
|
||||||
|
|
||||||
|
|
||||||
TREEPROJECT_ITEM::TREEPROJECT_ITEM( enum TreeFileType type, const wxString& data,
|
TREEPROJECT_ITEM::TREEPROJECT_ITEM( enum TreeFileType type, const wxString& data,
|
|
@ -2,7 +2,7 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010-2014 Jean-Pierre Charras
|
* Copyright (C) 2010-2014 Jean-Pierre Charras
|
||||||
* Copyright (C) 2004-2014 KiCad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2004-2014 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
|
@ -2,7 +2,7 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004-2012 Jean-Pierre Charras
|
* Copyright (C) 2004-2012 Jean-Pierre Charras
|
||||||
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2004-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -30,10 +30,10 @@
|
||||||
|
|
||||||
#include <bitmaps.h>
|
#include <bitmaps.h>
|
||||||
|
|
||||||
#include "class_treeproject_item.h"
|
#include "treeproject_item.h"
|
||||||
#include "tree_project_frame.h"
|
#include "tree_project_frame.h"
|
||||||
|
|
||||||
#include "class_treeprojectfiles.h"
|
#include "treeprojectfiles.h"
|
||||||
|
|
||||||
|
|
||||||
IMPLEMENT_ABSTRACT_CLASS( TREEPROJECTFILES, wxTreeCtrl )
|
IMPLEMENT_ABSTRACT_CLASS( TREEPROJECTFILES, wxTreeCtrl )
|
|
@ -2,7 +2,7 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010-2014 Jean-Pierre Charras
|
* Copyright (C) 2010-2014 Jean-Pierre Charras
|
||||||
* Copyright (C) 2004-2014 KiCad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2004-2014 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -23,11 +23,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* file class_treeprojectfiles.h
|
* file treeprojectfiles.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CLASS_TREEPROJECTFILES_H
|
#ifndef TREEPROJECTFILES_H
|
||||||
#define CLASS_TREEPROJECTFILES_H
|
#define TREEPROJECTFILES_H
|
||||||
|
|
||||||
|
|
||||||
#include <wx/treectrl.h>
|
#include <wx/treectrl.h>
|
||||||
|
@ -60,4 +60,4 @@ private:
|
||||||
int OnCompareItems( const wxTreeItemId& item1, const wxTreeItemId& item2 ) override;
|
int OnCompareItems( const wxTreeItemId& item1, const wxTreeItemId& item2 ) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CLASS_TREEPROJECTFILES_H
|
#endif // TREEPROJECTFILES_H
|
Loading…
Reference in New Issue