diff options
Diffstat (limited to 'cervisia/stringmatcher.h')
-rw-r--r-- | cervisia/stringmatcher.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cervisia/stringmatcher.h b/cervisia/stringmatcher.h index 17ecd3e8..baedc69f 100644 --- a/cervisia/stringmatcher.h +++ b/cervisia/stringmatcher.h @@ -21,7 +21,7 @@ #define CERVISIA_STRINGMATCHER_H -#include <qstringlist.h> +#include <tqstringlist.h> namespace Cervisia @@ -35,12 +35,12 @@ public: /** * @return \c true, if text matches one of the given patterns. */ - bool match(const QString& text) const; + bool match(const TQString& text) const; /** * Adds pattern \a pattern. */ - void add(const QString& pattern); + void add(const TQString& pattern); /** * Removes all patterns. @@ -52,22 +52,22 @@ private: /** * The patterns which are tested in match(). */ - QStringList m_exactPatterns; + TQStringList m_exactPatterns; /** * The patterns which are tested in match(). */ - QStringList m_startPatterns; + TQStringList m_startPatterns; /** * The patterns which are tested in match(). */ - QStringList m_endPatterns; + TQStringList m_endPatterns; /** * The patterns which are tested in match(). */ - QValueList<QCString> m_generalPatterns; + TQValueList<TQCString> m_generalPatterns; }; |