summaryrefslogtreecommitdiff
path: root/cad/kicad-devel/files/patch-pcbnew__class_module.cpp
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2005-12-08 23:30:13 +0000
committerThierry Thomas <thierry@FreeBSD.org>2005-12-08 23:30:13 +0000
commit0a7f5f45415a0a3680c38136568ff844bc25074d (patch)
treef5486a2b49469e0c8732682d80af411fc2eb58a3 /cad/kicad-devel/files/patch-pcbnew__class_module.cpp
parentMark broken on 4.x: C++ code does not compile. (diff)
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.
Diffstat (limited to 'cad/kicad-devel/files/patch-pcbnew__class_module.cpp')
-rw-r--r--cad/kicad-devel/files/patch-pcbnew__class_module.cpp11
1 files changed, 11 insertions, 0 deletions
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,", ");