summaryrefslogtreecommitdiffstats
path: root/libtdeedu/tdeeduplot
diff options
context:
space:
mode:
Diffstat (limited to 'libtdeedu/tdeeduplot')
-rw-r--r--libtdeedu/tdeeduplot/kplotaxis.h2
-rw-r--r--libtdeedu/tdeeduplot/kplotobject.h6
-rw-r--r--libtdeedu/tdeeduplot/kplotwidget.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/libtdeedu/tdeeduplot/kplotaxis.h b/libtdeedu/tdeeduplot/kplotaxis.h
index 3209b18c..e0d791a0 100644
--- a/libtdeedu/tdeeduplot/kplotaxis.h
+++ b/libtdeedu/tdeeduplot/kplotaxis.h
@@ -27,7 +27,7 @@
*@author Andreas Nicolai
*@version 1.0
*/
-class KDE_EXPORT KPlotAxis {
+class TDE_EXPORT KPlotAxis {
public:
/**@short Default constructor, creates a default axis. */
diff --git a/libtdeedu/tdeeduplot/kplotobject.h b/libtdeedu/tdeeduplot/kplotobject.h
index f1074cb6..a38d4be7 100644
--- a/libtdeedu/tdeeduplot/kplotobject.h
+++ b/libtdeedu/tdeeduplot/kplotobject.h
@@ -29,7 +29,7 @@ class TQPainter;
*@author Jason Harris
*@version 1.0
*/
-class KDE_EXPORT DRect {
+class TDE_EXPORT DRect {
public:
DRect() { DRect( 0.0, 0.0, 1.0, 1.0 ); }
DRect( double x, double y, double w, double h ) { X = x; Y = y; W = w; H = h; }
@@ -56,7 +56,7 @@ private:
*@author Jason Harris
*@version 1.0
*/
-class KDE_EXPORT DPoint {
+class TDE_EXPORT DPoint {
public:
DPoint() { DPoint( 0.0, 0.0 ); }
DPoint( double x, double y ) { setX( x ); setY( y ); }
@@ -87,7 +87,7 @@ private:
*about the object's appearance, depending on its type. There is a draw function
*for plotting the object on a KPlotWidget's TQPainter.
*/
-class KDE_EXPORT KPlotObject{
+class TDE_EXPORT KPlotObject{
public:
/**@enum PTYPE
*The Type classification of the KPlotObject
diff --git a/libtdeedu/tdeeduplot/kplotwidget.h b/libtdeedu/tdeeduplot/kplotwidget.h
index d76ef473..98566edd 100644
--- a/libtdeedu/tdeeduplot/kplotwidget.h
+++ b/libtdeedu/tdeeduplot/kplotwidget.h
@@ -38,7 +38,7 @@ class TQPixmap;
*tickmarks and labels and a list of KPlotObjects to be drawn.
*/
-class KDE_EXPORT KPlotWidget : public TQWidget {
+class TDE_EXPORT KPlotWidget : public TQWidget {
TQ_OBJECT
public: