diff options
author | Lukáš Lalinský <lalinsky@gmail.com> | 2008-12-03 09:59:39 +0100 |
---|---|---|
committer | Lukáš Lalinský <lalinsky@gmail.com> | 2008-12-03 09:59:39 +0100 |
commit | 12f465eb8ad1fe6f6c0d2c3e261fe1bb88f33d10 (patch) | |
tree | 1d2ae1cb348fbd769f95c9b5a4ab51aa90e12d8a /databasemodel.cpp | |
parent | 3458318f785ba66b65e7a3c831368d58321e10e5 (diff) | |
download | dbmodel-12f465eb8ad1fe6f6c0d2c3e261fe1bb88f33d10.tar.xz |
Add feedback on changed table property
Diffstat (limited to 'databasemodel.cpp')
-rw-r--r-- | databasemodel.cpp | 2 |
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); |