diff options
author | Michele Calgaro <[email protected]> | 2023-11-21 11:42:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-21 11:42:12 +0900 |
commit | 80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee (patch) | |
tree | 13eee7f381bb132542e75150c57a17b93804a058 /tdeui/ktabbar.cpp | |
parent | 57e0ed66347db15cb1cd66488f095107e7772ad9 (diff) | |
download | tdelibs-80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee.tar.gz tdelibs-80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee.zip |
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/ktabbar.cpp')
-rw-r--r-- | tdeui/ktabbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/ktabbar.cpp b/tdeui/ktabbar.cpp index 290e97410..01b228247 100644 --- a/tdeui/ktabbar.cpp +++ b/tdeui/ktabbar.cpp @@ -144,7 +144,7 @@ void KTabBar::mouseMoveEvent( TQMouseEvent *e ) TQTab *tab = selectTab( e->pos() ); if( tab && mTabReorderingEnabled ) { mReorderStartTab = indexOf( tab->identifier() ); - grabMouse( tqsizeAllCursor ); + grabMouse( TQt::sizeAllCursor ); return; } } @@ -240,7 +240,7 @@ void KTabBar::mouseReleaseEvent( TQMouseEvent *e ) } else { releaseMouse(); - setCursor( tqarrowCursor ); + setCursor( TQt::arrowCursor ); mReorderStartTab=-1; mReorderPreviousTab=-1; } |