diff options
author | Michele Calgaro <[email protected]> | 2023-11-21 11:41:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-21 18:14:06 +0900 |
commit | 7272c289be1517c4a4b6ccd35c9d64f8a657593d (patch) | |
tree | f52030f604018b8af37958df1a289c8c0d2deb11 /twin/client.cpp | |
parent | 4a6f4a17320917d60610036649b6192289c3f4a5 (diff) | |
download | tdebase-7272c289be1517c4a4b6ccd35c9d64f8a657593d.tar.gz tdebase-7272c289be1517c4a4b6ccd35c9d64f8a657593d.zip |
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 100f977221b7319815eb9617f56a067cb0383853)
Diffstat (limited to 'twin/client.cpp')
-rw-r--r-- | twin/client.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/twin/client.cpp b/twin/client.cpp index 044d89208..c4916bef7 100644 --- a/twin/client.cpp +++ b/twin/client.cpp @@ -2707,25 +2707,25 @@ void Client::setCursor( Position m ) { case PositionTopLeft: case PositionBottomRight: - setCursor( tqsizeFDiagCursor ); + setCursor( TQt::sizeFDiagCursor ); break; case PositionBottomLeft: case PositionTopRight: - setCursor( tqsizeBDiagCursor ); + setCursor( TQt::sizeBDiagCursor ); break; case PositionTop: case PositionBottom: - setCursor( tqsizeVerCursor ); + setCursor( TQt::sizeVerCursor ); break; case PositionLeft: case PositionRight: - setCursor( tqsizeHorCursor ); + setCursor( TQt::sizeHorCursor ); break; default: if( buttonDown && isMovable()) - setCursor( tqsizeAllCursor ); + setCursor( TQt::sizeAllCursor ); else - setCursor( tqarrowCursor ); + setCursor( TQt::arrowCursor ); break; } } |