From 0a7f5f45415a0a3680c38136568ff844bc25074d Mon Sep 17 00:00:00 2001 From: Thierry Thomas Date: Thu, 8 Dec 2005 23:30:13 +0000 Subject: Add Kicad, a software for the creation of electronic schematic diagrams and printed circuit board artwork. Kicad is a set of four softwares and a project manager: * Eeschema: Schematic entry. * Pcbnew: Board editor. * Gerbview: GERBER viewer (photoplotter documents). * Cvpcb: footprint selector for components used in the circuit design. * Kicad: project manager. --- cad/kicad-devel/files/patch-pcbnew__class_module.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cad/kicad-devel/files/patch-pcbnew__class_module.cpp (limited to 'cad/kicad-devel/files/patch-pcbnew__class_module.cpp') diff --git a/cad/kicad-devel/files/patch-pcbnew__class_module.cpp b/cad/kicad-devel/files/patch-pcbnew__class_module.cpp new file mode 100644 index 000000000000..dca5f8978336 --- /dev/null +++ b/cad/kicad-devel/files/patch-pcbnew__class_module.cpp @@ -0,0 +1,11 @@ +--- ./pcbnew/class_module.cpp.orig Fri Sep 9 12:22:06 2005 ++++ ./pcbnew/class_module.cpp Thu Dec 1 23:15:31 2005 +@@ -1017,7 +1017,7 @@ + pos += 14; + if ( flag ) // Affichage date de modification (utile en Module Editor) + { +- strcpy(Line, ctime(&m_LastEdit_Time)); ++ strcpy(Line, ctime((time_t*) &m_LastEdit_Time)); + strtok(Line," \n\r"); + strcpy( bufcar, strtok(NULL," \n\r") ); strcat(bufcar," "); + strcat( bufcar, strtok(NULL," \n\r") ); strcat(bufcar,", "); -- cgit v1.2.3