[Kst] branches/work/kst/portto4/kst/src/libkst
Mike Fenton
mike at staikos.net
Tue Apr 28 17:03:08 CEST 2009
SVN commit 960510 by fenton:
Fix update process not correctly updating scalars / strings of Primitives / DataObjects.
M +1 -1 scalar.cpp
M +1 -1 string_kst.cpp
--- branches/work/kst/portto4/kst/src/libkst/scalar.cpp #960509:960510
@@ -98,7 +98,7 @@
if (_value != inV) {
dirtyScalars = true;
_value = inV;
- emit trigger();
+ emit updated(this);
}
}
--- branches/work/kst/portto4/kst/src/libkst/string_kst.cpp #960509:960510
@@ -81,7 +81,7 @@
void String::setValue(const QString& inV) {
_value = inV;
- emit trigger();
+ emit updated(this);
}
More information about the Kst
mailing list