summaryrefslogtreecommitdiffstats
path: root/scripts/kde-devel-gdb
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
commit0ffe839d6e363933ed4d9d212b6fd325a6fc3225 (patch)
tree3e607e94c1db1d54bcacd998df14ff84fc453db2 /scripts/kde-devel-gdb
parent92ad06c495d06658f03fc368d82dce7f1d268540 (diff)
downloadtdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.tar.gz
tdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'scripts/kde-devel-gdb')
-rw-r--r--scripts/kde-devel-gdb12
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