diff options
author | Michele Calgaro <[email protected]> | 2023-11-21 11:42:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-21 18:14:21 +0900 |
commit | 3373b45cc2adb7d46c45c3da06f64d5db24cb468 (patch) | |
tree | 74a426e8bad30622dcab2404ec8fe66c338fc91b /tdeio/tdefile/tdediroperator.cpp | |
parent | 0e4a5c95a4675da94170d7c8997bf14f76451e31 (diff) | |
download | tdelibs-3373b45cc2adb7d46c45c3da06f64d5db24cb468.tar.gz tdelibs-3373b45cc2adb7d46c45c3da06f64d5db24cb468.zip |
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee)
Diffstat (limited to 'tdeio/tdefile/tdediroperator.cpp')
-rw-r--r-- | tdeio/tdefile/tdediroperator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeio/tdefile/tdediroperator.cpp b/tdeio/tdefile/tdediroperator.cpp index f803cf1b7..c59a6ebff 100644 --- a/tdeio/tdefile/tdediroperator.cpp +++ b/tdeio/tdefile/tdediroperator.cpp @@ -719,7 +719,7 @@ void KDirOperator::pathChanged() TQApplication::restoreOverrideCursor(); // when TDEIO::Job emits finished, the slot will restore the cursor - TQApplication::setOverrideCursor( tqwaitCursor ); + TQApplication::setOverrideCursor( TQt::waitCursor ); if ( !isReadable( currUrl )) { KMessageBox::error(viewWidget(), @@ -1071,7 +1071,7 @@ void KDirOperator::connectView(KFileView *view) m_fileView->widget()->show(); if ( listDir ) { - TQApplication::setOverrideCursor( tqwaitCursor ); + TQApplication::setOverrideCursor( TQt::waitCursor ); openURL( currUrl ); } else |