summaryrefslogtreecommitdiffstats
path: root/akregator/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/utils.h')
-rw-r--r--akregator/src/utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/utils.h b/akregator/src/utils.h
index 9ee4eaaa..f4f86363 100644
--- a/akregator/src/utils.h
+++ b/akregator/src/utils.h
@@ -34,7 +34,7 @@ class Utils
{
public:
/** removes HTML/XML tags (everything between < and >, that is) from a string. "<p><strong>foo</strong> bar</p>" becomes "foo bar" */
- static QString stripTags(const QString& str);
+ static TQString stripTags(const TQString& str);
/** taken from some website... -fo
* djb2
@@ -42,7 +42,7 @@ class Utils
* many years ago in comp.lang.c
*/
- static uint calcHash(const QString& str);
+ static uint calcHash(const TQString& str);
/**
* returns a file name for a URL, with chars like "/" ":"
@@ -50,7 +50,7 @@ class Utils
* appended with a hash value.
*
*/
- static QString fileNameForUrl(const QString& url);
+ static TQString fileNameForUrl(const TQString& url);
};
}