]> Git trees. - libqmvoc.git/commitdiff
API change:
authorPino Toscano <pino@kde.org>
Sat, 17 Feb 2007 16:25:05 +0000 (16:25 +0000)
committerPino Toscano <pino@kde.org>
Sat, 17 Feb 2007 16:25:05 +0000 (16:25 +0000)
unvirtualize setLimits(), setSecondaryLimits() and clearSecondaryLimits(), as they no more need to be such

svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=634568

kdeeduplot/kplotwidget.h

index 564006c5ab2a0a4ebfb0c45f3bbecc031219e0fe..82c93c8ef9314112c8e9284b0f15d68ec429e38a 100644 (file)
@@ -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.