summaryrefslogtreecommitdiffstats
path: root/kgantt/kgantt/KGanttRelation.h
diff options
context:
space:
mode:
Diffstat (limited to 'kgantt/kgantt/KGanttRelation.h')
-rw-r--r--kgantt/kgantt/KGanttRelation.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/kgantt/kgantt/KGanttRelation.h b/kgantt/kgantt/KGanttRelation.h
index 26baf7c4..54878950 100644
--- a/kgantt/kgantt/KGanttRelation.h
+++ b/kgantt/kgantt/KGanttRelation.h
@@ -28,11 +28,11 @@
*/
-#include <qobject.h>
-#include <qdatetime.h>
-#include <qtextstream.h>
-#include <qptrlist.h>
-#include <qpainter.h>
+#include <tqobject.h>
+#include <tqdatetime.h>
+#include <tqtextstream.h>
+#include <tqptrlist.h>
+#include <tqpainter.h>
class KGanttItem;
@@ -113,7 +113,7 @@ public:
/*!
*
*/
- QPen& getSelectPen() {
+ TQPen& getSelectPen() {
return _selectPen;
}
@@ -123,7 +123,7 @@ public:
/*!
*
*/
- void setPen(const QPen& pen);
+ void setPen(const TQPen& pen);
@@ -131,7 +131,7 @@ public:
/*!
*
*/
- QPen& getPen() {
+ TQPen& getPen() {
return _pen;
}
@@ -141,7 +141,7 @@ public:
/*!
*
*/
- void setTextPen(const QPen& pen) {
+ void setTextPen(const TQPen& pen) {
_textPen = pen;
}
@@ -151,7 +151,7 @@ public:
/*!
*
*/
- QPen& getTextPen() {
+ TQPen& getTextPen() {
return _textPen;
}
@@ -161,7 +161,7 @@ public:
/*!
*
*/
- void setText(const QString& text);
+ void setText(const TQString& text);
@@ -169,7 +169,7 @@ public:
/*!
*
*/
- QString getText() { return _text; }
+ TQString getText() { return _text; }
@@ -195,10 +195,10 @@ public:
/*!
*
*/
- void dump(QTextOStream& cout, const QString& pre);
+ void dump(TQTextOStream& cout, const TQString& pre);
- QString ChangeAsString(Change c);
+ TQString ChangeAsString(Change c);
signals:
@@ -232,7 +232,7 @@ protected:
*
*/
KGanttRelation(KGanttItem* from, KGanttItem* to,
- const QString& text );
+ const TQString& text );
private:
@@ -245,11 +245,11 @@ private:
KGanttItem* _from;
KGanttItem* _to;
- QString _text;
+ TQString _text;
- QPen _pen, _textPen;
+ TQPen _pen, _textPen;
- static QPen _selectPen;
+ static TQPen _selectPen;
};