From b3ec4fa1160a274760c5b0f9bad16e1d99a3d898 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 3 Jan 2007 11:28:31 +0000 Subject: [PATCH] SVN_SILENT unused parameters svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=619421 --- kdeeduplot/kplotobject.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kdeeduplot/kplotobject.h b/kdeeduplot/kplotobject.h index 51d3543..c4f8d69 100644 --- a/kdeeduplot/kplotobject.h +++ b/kdeeduplot/kplotobject.h @@ -337,6 +337,7 @@ public: * @param barWidth the width of the bar, if this object is drawn as bars */ void addPoint( const QPointF &p, const QString &label="", double barWidth=0.0 ) { + Q_UNUSED( barWidth ) addPoint( new KPlotPoint( p.x(), p.y(), label ) ); } @@ -357,7 +358,8 @@ public: * @param label the optional text label * @param barWidth the width of the bar, if this object is drawn as bars */ - void addPoint( double x, double y, const QString &label="", double barWidth=0.0 ) { + void addPoint( double x, double y, const QString &label="", double barWidth=0.0 ) { + Q_UNUSED( barWidth ) addPoint( new KPlotPoint( x, y, label ) ); } -- 2.47.3