diff options
author | Michele Calgaro <[email protected]> | 2023-09-25 13:53:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-25 13:53:32 +0900 |
commit | 1af67c63e33cfdc6d5414f2a8737a1670d230700 (patch) | |
tree | 0d7d2ea84cd20e7e7fa4a1c439196aef8d7fc0d5 /kdat/TODO | |
parent | b6117e231e89d5864100d7de79d17e88a00b9e69 (diff) | |
download | tdeadmin-1af67c63e33cfdc6d5414f2a8737a1670d230700.tar.gz tdeadmin-1af67c63e33cfdc6d5414f2a8737a1670d230700.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kdat/TODO')
-rw-r--r-- | kdat/TODO | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -210,7 +210,7 @@ c/o rolandg at onlinehome.de: 2001-08-01 These are possible sources of bugs: -1) don't return 0 instead of a null QString +1) don't return 0 instead of a null TQString (e.g., BackupProfile::getWorkingDirectory()) 2) don't test for FALSE predicate values with !(). Use == FALSE instead. @@ -218,7 +218,7 @@ c/o rolandg at onlinehome.de: _relativeFiles.remove(_relativeFiles.first()) Instead, separate the two: - QString my_first = _relativeFiles.first(); + TQString my_first = _relativeFiles.first(); _relativeFiles.remove( my_first ); This may be important with any call to .remove() |