aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/canvaswidget.cpp
diff options
context:
space:
mode:
authorGravatar Elvio Basello2010-08-07 16:01:59 +0000
committerGravatar Elvio Basello2010-08-07 16:01:59 +0000
commit403374043e06788423598a7d1a656443e1a85704 (patch)
tree265717148afebfa1af7a0f623b7ca966967153b1 /src/modules/dcc/canvaswidget.cpp
parentupdated translation files (diff)
downloadKVIrc-403374043e06788423598a7d1a656443e1a85704.tar.gz
KVIrc-403374043e06788423598a7d1a656443e1a85704.tar.bz2
KVIrc-403374043e06788423598a7d1a656443e1a85704.zip
cleaned code: removed all instances of debug
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4805 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/canvaswidget.cpp')
-rw-r--r--src/modules/dcc/canvaswidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/dcc/canvaswidget.cpp b/src/modules/dcc/canvaswidget.cpp
index 94cc5446b..65c9678be 100644
--- a/src/modules/dcc/canvaswidget.cpp
+++ b/src/modules/dcc/canvaswidget.cpp
@@ -799,7 +799,7 @@
{
m_dragMode = Rotate;
m_dragPointArray = it->internalPoints();
- // debug("Here");
+ // qDebug("Here");
setCursor(sizeHorCursor);
return;
}
@@ -835,7 +835,7 @@
{
QPoint act((int)(p.x() - it->x()),(int)(p.y() - it->y()));
double dAngle = ssm_2d_rotationAngle(m_dragBegin.x(),m_dragBegin.y(),act.x(),act.y());
- // debug("%d,%d %d,%d %f",m_dragBegin.x(),m_dragBegin.y(),act.x(),act.y(),dAngle);
+ // qDebug("%d,%d %d,%d %f",m_dragBegin.x(),m_dragBegin.y(),act.x(),act.y(),dAngle);
QPointArray thePoints = m_dragPointArray.copy();
for(unsigned int i=0;i<thePoints.size();i++)
{