diff options
Diffstat (limited to 'librss/tools_p.cpp')
-rw-r--r-- | librss/tools_p.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/librss/tools_p.cpp b/librss/tools_p.cpp index c88eecac..1c043849 100644 --- a/librss/tools_p.cpp +++ b/librss/tools_p.cpp @@ -10,17 +10,17 @@ */ #include "tools_p.h" -#include <qdom.h> +#include <tqdom.h> -QString RSS::extractNode(const QDomNode &parent, const QString &elemName) +TQString RSS::extractNode(const TQDomNode &parent, const TQString &elemName) { - QDomNode node = parent.namedItem(elemName); + TQDomNode node = parent.namedItem(elemName); if (node.isNull()) - return QString::null; + return TQString::null; - QString result = node.toElement().text().simplifyWhiteSpace(); + TQString result = node.toElement().text().simplifyWhiteSpace(); if (result.isEmpty()) - return QString::null; + return TQString::null; return result; } |