]> Git trees. - libqmvoc.git/commitdiff
SVN_SILENT unused parameters
authorPino Toscano <pino@kde.org>
Wed, 3 Jan 2007 11:28:31 +0000 (11:28 +0000)
committerPino Toscano <pino@kde.org>
Wed, 3 Jan 2007 11:28:31 +0000 (11:28 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=619421

kdeeduplot/kplotobject.h

index 51d35439daa9618a115b6f3105bded0e0466d032..c4f8d69177df3531eb73bf7978cdd6068f236f50 100644 (file)
@@ -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 ) ); 
        }