From 5b11c71961e2377959ac79f24f1c5cddd0dc961b Mon Sep 17 00:00:00 2001 From: nvdl Date: Sat, 20 Jun 2015 11:19:20 +0200 Subject: [PATCH] D.C bias points calculation bug fix. --- qucs/qucs/dialogs/sweepdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qucs/qucs/dialogs/sweepdialog.cpp b/qucs/qucs/dialogs/sweepdialog.cpp index 4dd940e2d4..b73d9e1cd0 100644 --- a/qucs/qucs/dialogs/sweepdialog.cpp +++ b/qucs/qucs/dialogs/sweepdialog.cpp @@ -117,7 +117,7 @@ SweepDialog::~SweepDialog() { delete pGraph; - while(!ValueList.isEmpty()) { + while (!ValueList.isEmpty()) { delete ValueList.takeFirst(); } }