[Kst] kdeextragear-2/kst/kst (silent)
Andrew Walker
arwalker at sumusltd.com
Fri Dec 10 21:04:31 CET 2004
CVS commit by arwalker:
Remove semi-colon after Q_UNUSED(...)
CVS_SILENT
M +16 -1 kst2dplot.cpp 1.309
M +2 -2 kstbasecurve.h 1.31
M +2 -2 kstviewobject.cpp 1.102
--- kdeextragear-2/kst/kst/kst2dplot.cpp #1.308:1.309
@@ -1666,5 +1666,5 @@ void Kst2DPlot::genAxisTickLabels(QPaint
void Kst2DPlot::internalAlignment(KstPaintType type, QPainter& p, QRect& plotRegion) {
- Q_UNUSED(type);
+ Q_UNUSED(type)
TickParameters tpx;
@@ -3832,4 +3832,5 @@ void Kst2DPlot::menuPrevMarker() {
void Kst2DPlot::moveLeft(KstViewWidget *view) {
Q_UNUSED(view)
+
if (moveSelfHorizontal(true)) {
updateTiedPlots(&Kst2DPlot::moveSelfHorizontal, true);
--- kdeextragear-2/kst/kst/kstbasecurve.h #1.30:1.31
@@ -44,6 +44,6 @@ class KstBaseCurve : public KstDataObjec
virtual KstCurveType type() const = 0;
- virtual void getEXPoint(int i, double &x1, double &y1, double &ex1) { Q_UNUSED(i); x1 = y1 = ex1 = 0;}
- virtual void getEYPoint(int i, double &x1, double &y1, double &ey1) { Q_UNUSED(i); x1 = y1 = ey1 = 0;}
+ virtual void getEXPoint(int i, double &x1, double &y1, double &ex1) { Q_UNUSED(i) x1 = y1 = ex1 = 0;}
+ virtual void getEYPoint(int i, double &x1, double &y1, double &ey1) { Q_UNUSED(i) x1 = y1 = ey1 = 0;}
virtual double maxX() const; // const { }
--- kdeextragear-2/kst/kst/kstviewobject.cpp #1.101:1.102
@@ -383,6 +383,6 @@ QSize KstViewObject::size() const {
void KstViewObject::internalAlignment(KstPaintType type, QPainter& p, QRect& plotRegion) {
- Q_UNUSED(type);
- Q_UNUSED(p);
+ Q_UNUSED(type)
+ Q_UNUSED(p)
plotRegion.setLeft(0);
More information about the Kst
mailing list