[Kst] branches/work/kst/portto4/kst/src/libkstmath
Mike Fenton
mike at staikos.net
Tue Apr 14 15:06:48 CEST 2009
SVN commit 953663 by fenton:
Fix typo.
M +1 -1 curve.cpp
M +1 -1 curve.h
M +1 -1 image.cpp
M +1 -1 image.h
M +1 -1 relation.cpp
M +1 -1 relation.h
--- branches/work/kst/portto4/kst/src/libkstmath/curve.cpp #953662:953663
@@ -715,7 +715,7 @@
}
-void Curve::paintObects(const CurveRenderContext& context) {
+void Curve::paintObjects(const CurveRenderContext& context) {
QPainter *p = context.painter;
Qt::PenStyle style = Kst::LineStyle[lineStyle()];
--- branches/work/kst/portto4/kst/src/libkstmath/curve.h #953662:953663
@@ -134,7 +134,7 @@
virtual RelationPtr makeDuplicate(QMap<RelationPtr, RelationPtr> &duplicatedRelations);
// render this curve
- virtual void paintObects(const CurveRenderContext& context);
+ virtual void paintObjects(const CurveRenderContext& context);
// Update the curve details.
void updatePaintObjects(const CurveRenderContext& context);
--- branches/work/kst/portto4/kst/src/libkstmath/image.cpp #953662:953663
@@ -465,7 +465,7 @@
}
-void Image::paintObects(const CurveRenderContext& context) {
+void Image::paintObjects(const CurveRenderContext& context) {
QPainter* p = context.painter;
p->drawImage(_imageLocation, _image);
--- branches/work/kst/portto4/kst/src/libkstmath/image.h #953662:953663
@@ -106,7 +106,7 @@
virtual double distanceToPoint(double xpos, double dx, double ypos) const;
// see KstRelation::paint
- void paintObects(const CurveRenderContext& context);
+ void paintObjects(const CurveRenderContext& context);
// Update the curve details.
void updatePaintObjects(const CurveRenderContext& context);
--- branches/work/kst/portto4/kst/src/libkstmath/relation.cpp #953662:953663
@@ -65,7 +65,7 @@
_redrawRequired = false;
}
- paintObects(context);
+ paintObjects(context);
}
--- branches/work/kst/portto4/kst/src/libkstmath/relation.h #953662:953663
@@ -133,7 +133,7 @@
// render this curve
void paint(const CurveRenderContext& context);
- virtual void paintObects(const CurveRenderContext& context) = 0;
+ virtual void paintObjects(const CurveRenderContext& context) = 0;
virtual void updatePaintObjects(const CurveRenderContext& context) = 0;
// render the legend symbol for this curve
More information about the Kst
mailing list