diff options
Diffstat (limited to 'akregator/src/utils.h')
-rw-r--r-- | akregator/src/utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/utils.h b/akregator/src/utils.h index 9ee4eaaa9..f4f86363e 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); }; } |