mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
2007-08-20 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (getAxisLimits): Fixed segfault bug in 3D-cartesian diagram.
This commit is contained in:
parent
54825ee74f
commit
c15bbf15a8
@ -1,5 +1,8 @@
|
||||
2007-08-20 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* diagrams/diagram.cpp (getAxisLimits): Fixed segfault bug in
|
||||
3D-cartesian diagram.
|
||||
|
||||
* dialogs/savedialog.cpp (saveSelectedClicked): Fixed a bug
|
||||
causing the GUI to crash on Win32 when saving selected unsaved
|
||||
schematics at end dialog.
|
||||
|
@ -685,10 +685,10 @@ void Diagram::getAxisLimits(Graph *pg)
|
||||
}
|
||||
|
||||
if(Name == "Rect3D") {
|
||||
pD = pg->cPointsX.next();
|
||||
if(pD) {
|
||||
p = pD->Points;
|
||||
for(z=pD->count; z>0; z--) { // check y coordinates (2. dimension)
|
||||
DataX *pDy = pg->cPointsX.next();
|
||||
if(pDy) {
|
||||
p = pDy->Points;
|
||||
for(z=pDy->count; z>0; z--) { // check y coordinates (2. dimension)
|
||||
y = *(p++);
|
||||
if(finite(y)) {
|
||||
if(y > yAxis.max) yAxis.max = y;
|
||||
|
Loading…
x
Reference in New Issue
Block a user