CVS commit by staikos: create scalars before updating them M +1 -1 kstvector.cpp 1.58 --- kdeextragear-2/kst/kst/kstvector.cpp #1.57:1.58 @@ -85,9 +85,9 @@ KstVector::KstVector(const QString& name _v = static_cast<double*>(malloc(size*sizeof(double))); _size = size; - zero(); _is_rising = false; CreateScalars(); KST::vectorList.append(this); + zero(); }