summaryrefslogtreecommitdiffstats
path: root/kdesktop
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:55:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:55:29 +0900
commit36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7 (patch)
tree222466bbb080055ec26887c15fe2c59ad308f2fe /kdesktop
parente4c9b13a62c5b357106022afdd21767f429c5b8d (diff)
downloadtdebase-36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7.tar.gz
tdebase-36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdesktop')
-rw-r--r--kdesktop/kdiconview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdesktop/kdiconview.cpp b/kdesktop/kdiconview.cpp
index a628aaa12..391fe228d 100644
--- a/kdesktop/kdiconview.cpp
+++ b/kdesktop/kdiconview.cpp
@@ -1667,7 +1667,7 @@ void KDIconView::slotAboutToCreate(const TQPoint &pos, const TQValueList<TDEIO::
saveIconPosition(m_dotDirectory, m_lastDropPos.x(), m_lastDropPos.y());
int dX = m_lastDropPos.x() - m_dropPos.x();
int dY = m_lastDropPos.y() - m_dropPos.y();
- if ((QABS(dX) > QABS(dY)) || (m_lastDropPos.x() + 2*gridX > width()))
+ if ((TQABS(dX) > TQABS(dY)) || (m_lastDropPos.x() + 2*gridX > width()))
m_lastDropPos = TQPoint(m_dropPos.x(), m_lastDropPos.y() + gridY);
else
m_lastDropPos = TQPoint(m_lastDropPos.x() + gridX, m_lastDropPos.y());