summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/entity.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:10:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:34:26 +0900
commitb0c86264e0cd10a0d3a47de3b05be453d9417bcd (patch)
tree7ae4535306d69dc4b55f68eae0a65298330ee610 /umbrello/umbrello/entity.cpp
parentd859a5c1f439fe432dedde763e40b2dad9875354 (diff)
downloadtdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.tar.gz
tdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'umbrello/umbrello/entity.cpp')
-rw-r--r--umbrello/umbrello/entity.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/umbrello/umbrello/entity.cpp b/umbrello/umbrello/entity.cpp
index 2df53283..09a99572 100644
--- a/umbrello/umbrello/entity.cpp
+++ b/umbrello/umbrello/entity.cpp
@@ -100,7 +100,7 @@ UMLObject* UMLEntity::addEntityAttribute(const TQString& name, Uml::IDType id) {
m_List.append(literal);
emit entityAttributeAdded(literal);
UMLObject::emitModified();
- connect(literal,TQT_SIGNAL(modified()),this,TQT_SIGNAL(modified()));
+ connect(literal,TQ_SIGNAL(modified()),this,TQ_SIGNAL(modified()));
return literal;
}
@@ -112,7 +112,7 @@ bool UMLEntity::addEntityAttribute(UMLEntityAttribute* attribute, IDChangeLog* L
m_List.append(attribute);
emit entityAttributeAdded(attribute);
UMLObject::emitModified();
- connect(attribute,TQT_SIGNAL(modified()),this,TQT_SIGNAL(modified()));
+ connect(attribute,TQ_SIGNAL(modified()),this,TQ_SIGNAL(modified()));
return true;
} else if (Log) {
Log->removeChangeByNewID( attribute->getID() );
@@ -133,7 +133,7 @@ bool UMLEntity::addEntityAttribute(UMLEntityAttribute* attribute, int position)
}
emit entityAttributeAdded(attribute);
UMLObject::emitModified();
- connect(attribute,TQT_SIGNAL(modified()),this,TQT_SIGNAL(modified()));
+ connect(attribute,TQ_SIGNAL(modified()),this,TQ_SIGNAL(modified()));
return true;
}
return false;
@@ -148,7 +148,7 @@ int UMLEntity::removeEntityAttribute(UMLClassifierListItem* literal) {
UMLObject::emitModified();
// If we are deleting the object, then we don't need to disconnect..this is done auto-magically
// for us by TQObject. -b.t.
- // disconnect(a,TQT_SIGNAL(modified()),this,TQT_SIGNAL(modified()));
+ // disconnect(a,TQ_SIGNAL(modified()),this,TQ_SIGNAL(modified()));
delete literal;
return m_List.count();
}