summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:23:31 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-20 05:10:19 +0200
commit057df7da652d6435173fa99255bbb7bb82848211 (patch)
treec8986cc4a6106f588a7701ce4c6be61fa5bff998 /scripts
parent611a40e79abddb288f87ac74632a34e4f9566726 (diff)
downloadtdesdk-057df7da652d6435173fa99255bbb7bb82848211.tar.gz
tdesdk-057df7da652d6435173fa99255bbb7bb82848211.zip
Rename obsolete tq methods to standard names
(cherry picked from commit 36b1e019b76f39cca8fc81f6d4df544f1c94c179)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fixheaders2
-rw-r--r--scripts/kde-devel-gdb4
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/fixheaders b/scripts/fixheaders
index fd538d5c..b1b0a15b 100644
--- a/scripts/fixheaders
+++ b/scripts/fixheaders
@@ -53,7 +53,7 @@ $lastdir = '.';
'variable `class QFile \S*\' has initializer but incomplete type' => "qfile",
'implicit declaration of function `int ICON\(\.\.\.\)' => "kiconloader",
'`QMessageBox\' undeclared \(first use this function\)' => "qmessagebox",
- 'no matching function for call to `QBoxLayout::QBoxLayout' => "qtqlayout",
+ 'no matching function for call to `QBoxLayout::QBoxLayout' => "qlayout",
'`QUriDrag\' undeclared \(first use this function\)' => "qdragobject",
'`kdDebug\' undeclared \(first use this function\)' => "kdebug",
'`kdWarning\' undeclared \(first use this function\)' => "kdebug",
diff --git a/scripts/kde-devel-gdb b/scripts/kde-devel-gdb
index f35161b5..bf69d233 100644
--- a/scripts/kde-devel-gdb
+++ b/scripts/kde-devel-gdb
@@ -25,7 +25,7 @@ define printqstringdata
set $i=0
set $d = (QStringData *)$arg0
while $i < $d->len
- printf "%c", (char)($d->tqunicode[$i++].ucs & 0xff)
+ printf "%c", (char)($d->unicode[$i++].ucs & 0xff)
end
printf "\n"
end
@@ -57,7 +57,7 @@ define printqstring_utf8
set $i=0
set $s = $arg0
while $i < $s.d->len
- set $uc = (unsigned short) $s.d->tqunicode[$i++].ucs
+ set $uc = (unsigned short) $s.d->unicode[$i++].ucs
if ( $uc < 0x80 )
printf "%c", (unsigned char)($uc & 0x7f)
else