summaryrefslogtreecommitdiffstats
path: root/twin/clients
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-25 15:17:16 +0900
commit139b166e1af1efe1cbc0ee2cce6d5534ad042d0e (patch)
tree85788279f2894f7133ffaac44c5f69eabaec3c3e /twin/clients
parentc19f68bd91790b23163fe787464984018a42a2dc (diff)
downloadtdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.tar.gz
tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7)
Diffstat (limited to 'twin/clients')
-rw-r--r--twin/clients/keramik/keramik.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/clients/keramik/keramik.cpp b/twin/clients/keramik/keramik.cpp
index 73bc859fc..0a9c7e2d5 100644
--- a/twin/clients/keramik/keramik.cpp
+++ b/twin/clients/keramik/keramik.cpp
@@ -1647,10 +1647,10 @@ void KeramikClient::resizeEvent( TQResizeEvent *e )
int dy = 0;
if ( e->oldSize().width() != width() )
- dx = 32 + QABS( e->oldSize().width() - width() );
+ dx = 32 + TQABS( e->oldSize().width() - width() );
if ( e->oldSize().height() != height() )
- dy = 8 + QABS( e->oldSize().height() - height() );
+ dy = 8 + TQABS( e->oldSize().height() - height() );
if ( dy )
widget()->update( 0, height() - dy + 1, width(), dy );