From 45e42f869d87e4e6c3a7ebd65d10375eca95e3de Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sat, 17 Feb 2007 16:25:05 +0000 Subject: [PATCH] API change: unvirtualize setLimits(), setSecondaryLimits() and clearSecondaryLimits(), as they no more need to be such svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=634568 --- kdeeduplot/kplotwidget.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kdeeduplot/kplotwidget.h b/kdeeduplot/kplotwidget.h index 564006c..82c93c8 100644 --- a/kdeeduplot/kplotwidget.h +++ b/kdeeduplot/kplotwidget.h @@ -119,7 +119,7 @@ public: * @param y1 the minimum Y value in data units * @param y2 the maximum Y value in data units */ - virtual void setLimits( double x1, double x2, double y1, double y2 ); + void setLimits( double x1, double x2, double y1, double y2 ); /** * Reset the secondary data limits, which control the top and right axes. @@ -132,14 +132,14 @@ public: * @param y2 the maximum Y value in secondary data units * @sa setLimits() */ - virtual void setSecondaryLimits( double x1, double x2, double y1, double y2 ); + void setSecondaryLimits( double x1, double x2, double y1, double y2 ); /** * Unset the secondary limits, so the top and right axes * show the same tickmarks as the bottom and left axes (no tickmark * labels will be drawn for the top and right axes in this case) */ - virtual void clearSecondaryLimits(); + void clearSecondaryLimits(); /** * Return the rect in natural limits representing the shown data. -- 2.47.3