summaryrefslogtreecommitdiffstats
path: root/kgantt/kgantt/KGanttItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kgantt/kgantt/KGanttItem.cpp')
-rw-r--r--kgantt/kgantt/KGanttItem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kgantt/kgantt/KGanttItem.cpp b/kgantt/kgantt/KGanttItem.cpp
index f032ede0..c517e767 100644
--- a/kgantt/kgantt/KGanttItem.cpp
+++ b/kgantt/kgantt/KGanttItem.cpp
@@ -94,8 +94,8 @@ KGanttItem::addRelation(KGanttItem* from, KGanttItem* to,
KGanttRelation* rel = new KGanttRelation(from,to,text);
_relations.append(rel);
- connect(rel, TQT_SIGNAL(destroyed(KGanttRelation*)),
- this, TQT_SLOT(removeRelation(KGanttRelation*)));
+ connect(rel, TQ_SIGNAL(destroyed(KGanttRelation*)),
+ this, TQ_SLOT(removeRelation(KGanttRelation*)));
emit changed(this, RelationAdded);
return rel;
@@ -130,8 +130,8 @@ KGanttItem::registerItem(KGanttItem* item)
{
_subitems.append(item);
- connect(item, TQT_SIGNAL(changed(KGanttItem*, KGanttItem::Change)),
- this, TQT_SLOT(subItemChanged(KGanttItem*, KGanttItem::Change)) );
+ connect(item, TQ_SIGNAL(changed(KGanttItem*, KGanttItem::Change)),
+ this, TQ_SLOT(subItemChanged(KGanttItem*, KGanttItem::Change)) );
bool minChanged = false;
bool maxChanged = false;