Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
37d19fb2
Commit
37d19fb2
authored
Nov 15, 2007
by
CHARRAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed a bug (function Delete_Zone() ) which crashes pcbnew
parent
0605d072
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
11 deletions
+20
-11
change_log.txt
change_log.txt
+6
-0
class_track.cpp
pcbnew/class_track.cpp
+1
-1
ioascii.cpp
pcbnew/ioascii.cpp
+3
-3
zones.cpp
pcbnew/zones.cpp
+9
-6
version.txt
version.txt
+1
-1
No files found.
change_log.txt
View file @
37d19fb2
...
...
@@ -4,6 +4,12 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2007-Nov-15 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+pcbnew:
Removed a bug (function Delete_Zone() ) which crashes pcbnew when erasing a zone by popup menu
2007-Nov-13 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
================================================================================
+ eeschema & pcbnew
...
...
pcbnew/class_track.cpp
View file @
37d19fb2
...
...
@@ -340,7 +340,7 @@ void SEGVIA::ReturnLayerPair( int* top_layer, int* bottom_layer ) const
}
/* Remove this from the track linked list
/* Remove this from the track
or zone
linked list
*/
void
TRACK
::
UnLink
()
{
...
...
pcbnew/ioascii.cpp
View file @
37d19fb2
...
...
@@ -1020,7 +1020,7 @@ int WinEDA_PcbFrame::ReadPcbFile( wxDC* DC, FILE* File, bool Append )
if
(
Append
)
{
for
(
;
StartTrack
!=
NULL
;
StartTrack
=
(
TRACK
*
)
StartTrack
->
Pnext
)
for
(
;
StartTrack
!=
NULL
;
StartTrack
=
StartTrack
->
Next
()
)
{
if
(
StartTrack
->
Pnext
==
NULL
)
break
;
...
...
@@ -1037,11 +1037,11 @@ int WinEDA_PcbFrame::ReadPcbFile( wxDC* DC, FILE* File, bool Append )
if
(
strnicmp
(
Line
,
"$ZONE"
,
5
)
==
0
)
{
TRACK
*
StartZone
=
m_Pcb
->
m_Zone
;
SEGZONE
*
StartZone
=
m_Pcb
->
m_Zone
;
if
(
Append
)
{
for
(
;
StartZone
!=
NULL
;
StartZone
=
(
TRACK
*
)
StartZone
->
Pnext
)
for
(
;
StartZone
!=
NULL
;
StartZone
=
StartZone
->
Next
()
)
{
if
(
StartZone
->
Pnext
==
NULL
)
break
;
...
...
pcbnew/zones.cpp
View file @
37d19fb2
...
...
@@ -437,24 +437,27 @@ void WinEDA_PcbFrame::Edit_Zone_Width( wxDC* DC, SEGZONE* aZone )
void
WinEDA_PcbFrame
::
Delete_Zone
(
wxDC
*
DC
,
SEGZONE
*
aZone
)
/**********************************************************/
/*
Efface la zone
Zone.
*
La zone est constituee des segments zones de me
me TimeStamp
/*
Remove the zone which include the segment a
Zone.
*
A zone is a group of segments which have the sa
me TimeStamp
*/
{
if
(
aZone
==
NULL
)
return
;
int
nb_segm
=
0
;
bool
modify
=
FALSE
;
unsigned
long
TimeStamp
=
aZone
->
m_TimeStamp
;
// Save reference time stamp (aZone will be deleted)
SEGZONE
*
next
;
for
(
SEGZONE
*
zone
=
m_Pcb
->
m_Zone
;
zone
;
zone
=
next
)
for
(
SEGZONE
*
zone
=
m_Pcb
->
m_Zone
;
zone
!=
NULL
;
zone
=
next
)
{
next
=
zone
->
Next
();
if
(
zone
->
m_TimeStamp
==
aZone
->
m_TimeStamp
)
if
(
zone
->
m_TimeStamp
==
TimeStamp
)
{
modify
=
TRUE
;
/*
effacement des segments a l'ecra
n */
/*
Erase segment from scree
n */
Trace_Une_Piste
(
DrawPanel
,
DC
,
zone
,
nb_segm
,
GR_XOR
);
/* remove item from linked list and free memory */
zone
->
DeleteStructure
();
}
}
...
...
version.txt
View file @
37d19fb2
release version:
09 nov 2007
files (.zip,.tgz):
kicad-2007-11-
09
kicad-2007-11-
14
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment