diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:48:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 17:42:37 +0900 |
commit | 1ad8fd66232a9fcf6d282da97a4758442fb36c89 (patch) | |
tree | 8b0866d4041c2aa5c09b18cb1cd4a0d139038717 /libtdeedu/tdeeduplot | |
parent | 54e015fe610fc9651654e4214d1b7f7d3655381d (diff) | |
download | tdeedu-1ad8fd66232a9fcf6d282da97a4758442fb36c89.tar.gz tdeedu-1ad8fd66232a9fcf6d282da97a4758442fb36c89.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c322141e5ad478b3da9dfb1e3ec6bdf04932d10c)
Diffstat (limited to 'libtdeedu/tdeeduplot')
-rw-r--r-- | libtdeedu/tdeeduplot/kplotaxis.h | 2 | ||||
-rw-r--r-- | libtdeedu/tdeeduplot/kplotobject.h | 6 | ||||
-rw-r--r-- | libtdeedu/tdeeduplot/kplotwidget.h | 2 |
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: |