]> Git trees. - libqmvoc.git/commitdiff
SVN_SILENT: antialias -> antialiasing
authorPino Toscano <pino@kde.org>
Sat, 17 Feb 2007 00:29:56 +0000 (00:29 +0000)
committerPino Toscano <pino@kde.org>
Sat, 17 Feb 2007 00:29:56 +0000 (00:29 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=634360

kdeeduplot/kplotwidget.cpp
kdeeduplot/kplotwidget.h
kdeeduplot/tests/testplot_widget.cpp

index 572333f878e908dbdfc06ec9b21f16a40697ba41..b9cbc384ebd175a4b6ee5061a971a62309196491 100644 (file)
@@ -297,12 +297,12 @@ bool KPlotWidget::isObjectToolTipShown() const
     return d->showObjectToolTip;
 }
 
-bool KPlotWidget::antialias() const
+bool KPlotWidget::antialiasing() const
 {
     return d->useAntialias;
 }
 
-void KPlotWidget::setAntialias( bool b )
+void KPlotWidget::setAntialiasing( bool b )
 {
     d->useAntialias = b;
     update();
index 82d01b035b645803afd4cdda641faa48c6a98292..560bcec017e278dca0c86ec94d53c11514b6864e 100644 (file)
@@ -243,9 +243,9 @@ public:
          */
         bool isObjectToolTipShown() const;
 
-        bool antialias() const;
+        bool antialiasing() const;
 
-        void setAntialias( bool b );
+        void setAntialiasing( bool b );
 
        /**
         * @return the number of pixels to the left of the plot area.
index 96907d15caf82c47cf5a4e4cbc9dd84a3aff4ce7..4eb54a64660b2aa3870c815e8a4234a739abf49e 100644 (file)
@@ -40,7 +40,7 @@ TestPlot::TestPlot( QWidget *p ) : KMainWindow( p ), po1(0), po2(0) {
 
        plot = new KPlotWidget( w );
        plot->setMinimumSize( 400,400 );
-       plot->setAntialias( true );
+       plot->setAntialiasing( true );
        vlay->addWidget( PlotSelector );
        vlay->addWidget( plot );