[Kst] branches/work/kst/portto4/kst/src
Peter Kümmel
syntheticpp at yahoo.com
Sat Mar 27 11:34:58 CET 2010
SVN commit 1107958 by kuemmel:
remove work around for CCBUG: 225247
M +2 -2 libkstapp/equationdialog.cpp
M +2 -2 libkstmath/equation.cpp
--- branches/work/kst/portto4/kst/src/libkstapp/equationdialog.cpp #1107957:1107958
@@ -292,7 +292,7 @@
}
equation->writeLock();
- equation->internalUpdate();
+ equation->registerChange();
equation->unlock();
CurvePtr curve = _document->objectStore()->createObject<Curve>();
@@ -311,7 +311,7 @@
curve->setBarStyle(_equationTab->curveAppearance()->barStyle());
curve->writeLock();
- curve->internalUpdate();
+ curve->registerChange();
curve->unlock();
_equationTab->curveAppearance()->setWidgetDefaults();
--- branches/work/kst/portto4/kst/src/libkstmath/equation.cpp #1107957:1107958
@@ -127,8 +127,8 @@
_isValid = FillY(true);
// should this be updated by the update manager?
- _yOutVector->internalUpdate();
- _xOutVector->internalUpdate();
+ //_yOutVector->internalUpdate();
+ //_xOutVector->internalUpdate();
unlockInputsAndOutputs();
More information about the Kst
mailing list