summaryrefslogtreecommitdiff
path: root/databasemodel.cpp
diff options
context:
space:
mode:
authorLukáš Lalinský <lalinsky@gmail.com>2008-12-03 09:59:39 +0100
committerLukáš Lalinský <lalinsky@gmail.com>2008-12-03 09:59:39 +0100
commit12f465eb8ad1fe6f6c0d2c3e261fe1bb88f33d10 (patch)
tree1d2ae1cb348fbd769f95c9b5a4ab51aa90e12d8a /databasemodel.cpp
parent3458318f785ba66b65e7a3c831368d58321e10e5 (diff)
downloaddbmodel-12f465eb8ad1fe6f6c0d2c3e261fe1bb88f33d10.tar.xz
Add feedback on changed table property
Diffstat (limited to 'databasemodel.cpp')
-rw-r--r--databasemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/databasemodel.cpp b/databasemodel.cpp
index f38a385..9e6f635 100644
--- a/databasemodel.cpp
+++ b/databasemodel.cpp
@@ -96,7 +96,7 @@ DatabaseModel::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
DatabaseTable *source = qgraphicsitem_cast<DatabaseTable *>(itemAt(m_line->line().p1()));
DatabaseTable *target = qgraphicsitem_cast<DatabaseTable *>(itemAt(m_line->line().p2()));
if (source && target && source != target) {
- qDebug() << "Add relation between " << source << " and " << target;
+ //qDebug() << "Add relation between " << source << " and " << target;
DatabaseRelation *relation = new DatabaseRelation();
relation->setSource(source);
relation->setTarget(target);