diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:55:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-25 15:17:16 +0900 |
commit | 139b166e1af1efe1cbc0ee2cce6d5534ad042d0e (patch) | |
tree | 85788279f2894f7133ffaac44c5f69eabaec3c3e /twin/client.cpp | |
parent | c19f68bd91790b23163fe787464984018a42a2dc (diff) | |
download | tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.tar.gz tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7)
Diffstat (limited to 'twin/client.cpp')
-rw-r--r-- | twin/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/client.cpp b/twin/client.cpp index 42aac61ad..74bee8535 100644 --- a/twin/client.cpp +++ b/twin/client.cpp @@ -896,7 +896,7 @@ void Client::setShade( ShadeMode mode ) // FRAME repaint( FALSE ); // bool wasStaticContents = testWFlags( WStaticContents ); // setWFlags( WStaticContents ); - int step = TQMAX( 4, QABS( h - s.height() ) / as )+1; + int step = TQMAX( 4, TQABS( h - s.height() ) / as )+1; do { h -= step; @@ -926,7 +926,7 @@ void Client::setShade( ShadeMode mode ) TQSize s( sizeForClientSize( clientSize())); // FRAME bool wasStaticContents = testWFlags( WStaticContents ); // setWFlags( WStaticContents ); - int step = TQMAX( 4, QABS( h - s.height() ) / as )+1; + int step = TQMAX( 4, TQABS( h - s.height() ) / as )+1; do { h += step; |