2007-05-17 Stefan Jahn <stefan@lkcc.org>

* schematic_file.cpp (giveNodeNames): Using QPtrListIterator for
        iterating the DocComps list.  This is because the current item of
        the list itself may be modified during iteration in the
        drawContents() method due to a repaint event.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1251 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
ela 2007-05-17 09:30:13 +00:00
parent a3e2b46e9b
commit 43bb245653
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2007-05-17 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (giveNodeNames): Using QPtrListIterator for
iterating the DocComps list. This is because the current item of
the list itself may be modified during iteration in the
drawContents() method due to a repaint event.
2007-05-15 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (recalcGraphData): When removing a graph

View File

@ -25,6 +25,7 @@
#include <qregexp.h>
#include <qprocess.h>
#include <qtextedit.h>
#include <qptrlist.h>
#include "main.h"
#include "node.h"
@ -827,7 +828,10 @@ bool Schematic::giveNodeNames(QTextStream *stream, int& countInit,
bool r;
QString s;
// give the ground nodes the name "gnd", and insert subcircuits etc.
for(Component *pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
QPtrListIterator<Component> it(DocComps);
Component *pc;
while((pc = it.current()) != 0) {
++it;
if(pc->isActive != COMP_IS_ACTIVE) continue;
if(NumPorts < 0) {
@ -978,6 +982,7 @@ bool Schematic::createLibNetlist(QTextStream *stream, QTextEdit *ErrText,
QStringList Collect;
Collect.clear();
StringList.clear();
Signals.clear();
// Apply node names and collect subcircuits and file include
creatingLib = true;
@ -1000,6 +1005,8 @@ bool Schematic::createLibNetlist(QTextStream *stream, QTextEdit *ErrText,
// Emit subcircuit components
createSubNetlistPlain(stream, ErrText, NumPorts);
Signals.clear(); // was filled in "giveNodeNames()"
return true;
}