summaryrefslogtreecommitdiffstats
path: root/tdeio
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-21 11:42:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-21 11:42:12 +0900
commit80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee (patch)
tree13eee7f381bb132542e75150c57a17b93804a058 /tdeio
parent57e0ed66347db15cb1cd66488f095107e7772ad9 (diff)
downloadtdelibs-80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee.tar.gz
tdelibs-80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee.zip
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeio')
-rw-r--r--tdeio/tdefile/kicondialog.cpp2
-rw-r--r--tdeio/tdefile/tdediroperator.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/tdefile/kicondialog.cpp b/tdeio/tdefile/kicondialog.cpp
index 9f38aeb7b..15090b237 100644
--- a/tdeio/tdefile/kicondialog.cpp
+++ b/tdeio/tdefile/kicondialog.cpp
@@ -119,7 +119,7 @@ void TDEIconCanvas::loadFiles(const TQStringList& files)
void TDEIconCanvas::slotLoadFiles()
{
setResizeMode(Fixed);
- TQApplication::setOverrideCursor(tqwaitCursor);
+ TQApplication::setOverrideCursor(TQt::waitCursor);
// disable updates to not trigger paint events when adding child items
setUpdatesEnabled( false );
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