summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeimport/kdevcppparser/lookup.h')
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/lookup.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/lookup.h b/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
index 225c3ab0..b2bad4de 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
@@ -24,7 +24,7 @@
#ifndef _KJSLOOKUP_H_
#define _KJSLOOKUP_H_
-#include <qstring.h>
+#include <tqstring.h>
#include <stdio.h>
/**
@@ -95,8 +95,8 @@
/**
* Find an entry in the table, and return its value (i.e. the value field of HashEntry)
*/
- static int find(const struct HashTable *table, const QString& s);
- static int find(const struct HashTable *table, const QChar *c, unsigned int len);
+ static int find(const struct HashTable *table, const TQString& s);
+ static int find(const struct HashTable *table, const TQChar *c, unsigned int len);
/**
* Find an entry in the table, and return the entry
@@ -104,15 +104,15 @@
* especially the attr field.
*/
static const HashEntry* findEntry(const struct HashTable *table,
- const QString &s);
+ const TQString &s);
static const HashEntry* findEntry(const struct HashTable *table,
- const QChar *c, unsigned int len);
+ const TQChar *c, unsigned int len);
/**
* Calculate the hash value for a given key
*/
- static unsigned int hash(const QString &key);
- static unsigned int hash(const QChar *c, unsigned int len);
+ static unsigned int hash(const TQString &key);
+ static unsigned int hash(const TQChar *c, unsigned int len);
static unsigned int hash(const char *s);
};