[Kst] extragear/graphics/kst/kst
George Staikos
staikos at kde.org
Wed Nov 30 05:56:02 CET 2005
SVN commit 484288 by staikos:
looks like it's a Qt difference of some sort. listBox() was null. Let's just
work around.
BUG: 117256
M +1 -1 datawizard.ui.h
--- trunk/extragear/graphics/kst/kst/datawizard.ui.h #484287:484288
@@ -391,7 +391,7 @@
_onePlot->setChecked(true);
}
- if (_existingPlot->isEnabled() && _existingPlotName->listBox()->findItem(psave)) {
+ if (_existingPlot->isEnabled() && _existingPlotName->listBox() && _existingPlotName->listBox()->findItem(psave)) {
_existingPlotName->setCurrentText(psave);
}
updateColumns();
More information about the Kst
mailing list