summaryrefslogtreecommitdiffstats
path: root/libtdeedu/tdeeduplot
diff options
context:
space:
mode:
Diffstat (limited to 'libtdeedu/tdeeduplot')
-rw-r--r--libtdeedu/tdeeduplot/Makefile.am2
-rw-r--r--libtdeedu/tdeeduplot/README2
-rw-r--r--libtdeedu/tdeeduplot/kplotaxis.h4
-rw-r--r--libtdeedu/tdeeduplot/kplotobject.h8
-rw-r--r--libtdeedu/tdeeduplot/kplotwidget.h4
5 files changed, 10 insertions, 10 deletions
diff --git a/libtdeedu/tdeeduplot/Makefile.am b/libtdeedu/tdeeduplot/Makefile.am
index 21b84f2a..00d8f278 100644
--- a/libtdeedu/tdeeduplot/Makefile.am
+++ b/libtdeedu/tdeeduplot/Makefile.am
@@ -9,7 +9,7 @@ libtdeeduplotinclude_HEADERS = kplotobject.h kplotaxis.h kplotwidget.h
libtdeeduplot_la_SOURCES = kplotobject.cpp kplotaxis.cpp kplotwidget.cpp
libtdeeduplot_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 3:0:2
-libtdeeduplot_la_LIBADD = $(LIB_TDECORE) $(LIB_QT)
+libtdeeduplot_la_LIBADD = $(LIB_TDECORE) $(LIB_TQT)
METASOURCES = AUTO
diff --git a/libtdeedu/tdeeduplot/README b/libtdeedu/tdeeduplot/README
index ab695f9a..e9a52c23 100644
--- a/libtdeedu/tdeeduplot/README
+++ b/libtdeedu/tdeeduplot/README
@@ -1,6 +1,6 @@
This library provides KPlotWidget and KPlotObject classes.
-KPlotWidget is a QWidget-derived class that provides a virtual baseclass
+KPlotWidget is a TQWidget-derived class that provides a virtual baseclass
for easy data-plotting. The idea behind KPlotWidget is that you only have
to specify information in "data units"; i.e., the natural units of the
data being plotted. KPlotWidget automatically converts everything
diff --git a/libtdeedu/tdeeduplot/kplotaxis.h b/libtdeedu/tdeeduplot/kplotaxis.h
index 3209b18c..901bc4a3 100644
--- a/libtdeedu/tdeeduplot/kplotaxis.h
+++ b/libtdeedu/tdeeduplot/kplotaxis.h
@@ -20,14 +20,14 @@
#include <tqstring.h>
-#include <kdemacros.h>
+#include <tdemacros.h>
/**class KPlotAxis
*@short Contains all data for drawing an axis including format specification axis labels.
*@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..70fe608f 100644
--- a/libtdeedu/tdeeduplot/kplotobject.h
+++ b/libtdeedu/tdeeduplot/kplotobject.h
@@ -22,14 +22,14 @@
class TQString;
class TQPainter;
-#include <kdemacros.h>
+#include <tdemacros.h>
/**class DRect
*@short equivalent of TQRect with double x,y coordinates
*@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 fd3504df..98566edd 100644
--- a/libtdeedu/tdeeduplot/kplotwidget.h
+++ b/libtdeedu/tdeeduplot/kplotwidget.h
@@ -38,8 +38,8 @@ class TQPixmap;
*tickmarks and labels and a list of KPlotObjects to be drawn.
*/
-class KDE_EXPORT KPlotWidget : public TQWidget {
- Q_OBJECT
+class TDE_EXPORT KPlotWidget : public TQWidget {
+ TQ_OBJECT
public:
/**@short Constructor. Sets the primary x and y limits in data units.