diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 20:06:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 20:33:38 +0900 |
commit | 7485c8248a1bb3a2fed851d389a291d60bba7752 (patch) | |
tree | 01530186491285c596ad8bea4ee9368436e38a48 /scripts/kde-devel-gdb | |
parent | 2611dd9a2020f335eff619aeeffc3730144ce657 (diff) | |
download | tdesdk-7485c824.tar.gz tdesdk-7485c824.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0ffe839d6e363933ed4d9d212b6fd325a6fc3225)
Diffstat (limited to 'scripts/kde-devel-gdb')
-rw-r--r-- | scripts/kde-devel-gdb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/kde-devel-gdb b/scripts/kde-devel-gdb index 62a43aba..3901803e 100644 --- a/scripts/kde-devel-gdb +++ b/scripts/kde-devel-gdb @@ -12,7 +12,7 @@ define printqstring printqstringdata $arg0.d end document printqstring - Prints the contents of a QString + Prints the contents of a TQString end define printq4string printq4stringdata $arg0.d @@ -32,8 +32,8 @@ end document printqstringdata Prints the contents of a QStringData This is useful when the output of another command (e.g. printqmap) - shows {d = 0xdeadbeef} for a QString, i.e. the qstringdata address - instead of the QString object itself. + shows {d = 0xdeadbeef} for a TQString, i.e. the qstringdata address + instead of the TQString object itself. printqstring $s and printqstringdata $s.d are equivalent. end @@ -73,7 +73,7 @@ define printqstring_utf8 printf "\n" end document printqstring_utf8 - Prints the contents of a QString encoded in utf8. + Prints the contents of a TQString encoded in utf8. Nice if you run your debug session in a utf8 enabled terminal. end @@ -106,8 +106,8 @@ define printqcolor printf "(%d,%d,%d)\n", ($arg0).red(), ($arg0).green(), ($arg0).blue() end document printqcolor - Prints a QColor as (R,G,B). - Usage: 'printqcolor <QColor col> + Prints a TQColor as (R,G,B). + Usage: 'printqcolor <TQColor col> end define printqmemarray |