From: Pino Toscano Date: Sat, 17 Feb 2007 16:25:05 +0000 (+0000) Subject: API change: X-Git-Tag: v3.80.3~25 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=45e42f869d87e4e6c3a7ebd65d10375eca95e3de;p=libqmvoc.git API change: unvirtualize setLimits(), setSecondaryLimits() and clearSecondaryLimits(), as they no more need to be such svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=634568 --- 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.