[Kst] extragear/graphics/kst/kst
George Staikos
staikos at kde.org
Mon Oct 31 00:11:05 CET 2005
SVN commit 475903 by staikos:
use a const iterator
M +1 -2 curveplacementwidget.ui.h
--- trunk/extragear/graphics/kst/kst/curveplacementwidget.ui.h #475902:475903
@@ -91,8 +91,7 @@
if (c) {
Kst2DPlotList plots = static_cast<KstViewWindow*>(c)->view()->findChildrenType<Kst2DPlot>();
- Kst2DPlotList::Iterator i = plots.begin();
- for ( ; i != plots.end(); ++i) {
+ for (Kst2DPlotList::ConstIterator i = plots.begin(); i != plots.end(); ++i) {
_plotList->insertItem((*i)->tagName());
}
More information about the Kst
mailing list