diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 12:23:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 17:53:57 +0900 |
commit | 0bfe293635aacc850731080cbda642a0b94baf94 (patch) | |
tree | bc77925f966255c5f66a069e63266828a168b296 /tdeioslave | |
parent | b5a1d6eca507ade6d0a22fabdb7f318cbd58f1a4 (diff) | |
download | tdebase-0bfe293635aacc850731080cbda642a0b94baf94.tar.gz tdebase-0bfe293635aacc850731080cbda642a0b94baf94.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 33c7d159890b81da8f44ee330a349e3abd553bec)
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/finger/tdeio_finger.h | 4 | ||||
-rw-r--r-- | tdeioslave/home/homeimpl.h | 2 | ||||
-rw-r--r-- | tdeioslave/mac/TODO | 2 | ||||
-rw-r--r-- | tdeioslave/media/mediamanager/medialist.h | 2 | ||||
-rw-r--r-- | tdeioslave/media/tdecmodule/managermodule.cpp | 2 | ||||
-rw-r--r-- | tdeioslave/thumbnail/thumbnail.cpp | 2 | ||||
-rw-r--r-- | tdeioslave/trash/tdefile-plugin/RETURNED_ITEMS | 2 | ||||
-rw-r--r-- | tdeioslave/trash/testtrash.h | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/tdeioslave/finger/tdeio_finger.h b/tdeioslave/finger/tdeio_finger.h index 2dff90d3a..079c82305 100644 --- a/tdeioslave/finger/tdeio_finger.h +++ b/tdeioslave/finger/tdeio_finger.h @@ -46,12 +46,12 @@ private slots: private: KURL *myURL; - QString *myPerlPath; + TQString *myPerlPath; TQString *myFingerPath; TQString *myFingerPerlScript; TQString *myFingerCSSFile; - QString *myStdStream; + TQString *myStdStream; TDEProcess *myTDEProcess; diff --git a/tdeioslave/home/homeimpl.h b/tdeioslave/home/homeimpl.h index 72e2668ba..abc106bcb 100644 --- a/tdeioslave/home/homeimpl.h +++ b/tdeioslave/home/homeimpl.h @@ -27,7 +27,7 @@ #include <tqstring.h> -class HomeImpl : public QObject +class HomeImpl : public TQObject { TQ_OBJECT diff --git a/tdeioslave/mac/TODO b/tdeioslave/mac/TODO index 69fcb0d2e..469a616be 100644 --- a/tdeioslave/mac/TODO +++ b/tdeioslave/mac/TODO @@ -5,7 +5,7 @@ grep TODO tdeio_mac.cpp //TODO this means dev=foo must be the last argument in the query //TODO this error interrupts the user when typing ?dev=foo on each letter of foo //TODO are there any more characters to escape? - QString theSize(fileRE.group(4)); //TODO: this is data size, what about resource size? + TQString theSize(fileRE.group(4)); //TODO: this is data size, what about resource size? Future things: - maybe make it work with plain old hfs partitions diff --git a/tdeioslave/media/mediamanager/medialist.h b/tdeioslave/media/mediamanager/medialist.h index 5397b37cc..a92d1b6c0 100644 --- a/tdeioslave/media/mediamanager/medialist.h +++ b/tdeioslave/media/mediamanager/medialist.h @@ -23,7 +23,7 @@ #include "medium.h" -class MediaList : public QObject +class MediaList : public TQObject { TQ_OBJECT diff --git a/tdeioslave/media/tdecmodule/managermodule.cpp b/tdeioslave/media/tdecmodule/managermodule.cpp index 813775cbd..9a443e551 100644 --- a/tdeioslave/media/tdecmodule/managermodule.cpp +++ b/tdeioslave/media/tdecmodule/managermodule.cpp @@ -91,7 +91,7 @@ void ManagerModule::load() else view->option_atime->setNoChange(); - QString value; + TQString value; value = config.readEntry("shortname", "lower").lower(); for (int i = 0; i < view->option_shortname->count(); i++) diff --git a/tdeioslave/thumbnail/thumbnail.cpp b/tdeioslave/thumbnail/thumbnail.cpp index cc2eefbc3..98b01138c 100644 --- a/tdeioslave/thumbnail/thumbnail.cpp +++ b/tdeioslave/thumbnail/thumbnail.cpp @@ -428,7 +428,7 @@ const TQImage& ThumbnailProtocol::getIcon() int h = icon->height(); for ( int y = 0; y < h; y++ ) { - QRgb *line = (QRgb *) icon->scanLine( y ); + TQRgb *line = (TQRgb *) icon->scanLine( y ); for ( int x = 0; x < w; x++ ) line[x] &= m_iconAlpha; // transparency } diff --git a/tdeioslave/trash/tdefile-plugin/RETURNED_ITEMS b/tdeioslave/trash/tdefile-plugin/RETURNED_ITEMS index f4e10f262..7ada25041 100644 --- a/tdeioslave/trash/tdefile-plugin/RETURNED_ITEMS +++ b/tdeioslave/trash/tdefile-plugin/RETURNED_ITEMS @@ -1,4 +1,4 @@ tdefile_trash =========== -QString OriginalPath +TQString OriginalPath DateTime DateOfDeletion diff --git a/tdeioslave/trash/testtrash.h b/tdeioslave/trash/testtrash.h index a7e093b48..1b46e3551 100644 --- a/tdeioslave/trash/testtrash.h +++ b/tdeioslave/trash/testtrash.h @@ -22,7 +22,7 @@ #include <tqobject.h> -class TestTrash : public QObject +class TestTrash : public TQObject { TQ_OBJECT |