summaryrefslogtreecommitdiffstats
path: root/kcontrol/background/bghash.h
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/background/bghash.h')
-rw-r--r--kcontrol/background/bghash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kcontrol/background/bghash.h b/kcontrol/background/bghash.h
index ab13daf90..61e9d7300 100644
--- a/kcontrol/background/bghash.h
+++ b/kcontrol/background/bghash.h
@@ -5,10 +5,10 @@
* TQString -> int hash. From Qt's TQGDict::hashKeyString().
*/
-static int QHash(TQString key)
+static int TQHash(TQString key)
{
int g, h = 0;
- const TQChar *p = key.unicode();
+ const TQChar *p = key.tqunicode();
for (unsigned i=0; i < key.length(); i++) {
h = (h << 4) + p[i].cell();
if ((g = (h & 0xf0000000)))