[Kst] [Bug 117256] crash when changing destination window in datawizard
George Staikos
staikos at kde.org
Wed Nov 30 05:56:07 CET 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=117256
staikos kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From staikos kde org 2005-11-30 05:56 -------
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