From: Pino Toscano Date: Wed, 3 Jan 2007 11:28:31 +0000 (+0000) Subject: SVN_SILENT unused parameters X-Git-Tag: v3.80.3~89 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=b3ec4fa1160a274760c5b0f9bad16e1d99a3d898;p=libqmvoc.git SVN_SILENT unused parameters svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=619421 --- 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 ) ); }