summaryrefslogtreecommitdiffstats
path: root/scripts/kde-devel-gdb
diff options
context:
space:
mode:
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