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/manage.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/manage.cpp')
-rw-r--r-- | twin/manage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/manage.cpp b/twin/manage.cpp index ec6a5d675..a129488cc 100644 --- a/twin/manage.cpp +++ b/twin/manage.cpp @@ -577,9 +577,9 @@ void Client::embedClient( Window w, const XWindowAttributes &attr ) attr.depth, InputOutput, attr.visual, CWColormap | CWBackPixmap | CWBorderPixel, &swa ); - XDefineCursor( tqt_xdisplay(), frame, tqarrowCursor.handle()); + XDefineCursor( tqt_xdisplay(), frame, TQt::arrowCursor.handle()); // some apps are stupid and don't define their own cursor - set the arrow one for them - XDefineCursor( tqt_xdisplay(), wrapper, tqarrowCursor.handle()); + XDefineCursor( tqt_xdisplay(), wrapper, TQt::arrowCursor.handle()); XReparentWindow( tqt_xdisplay(), client, wrapper, 0, 0 ); XSelectInput( tqt_xdisplay(), frame, KeyPressMask | KeyReleaseMask | |