summaryrefslogtreecommitdiffstats
path: root/kresources/lib/webdavhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/lib/webdavhandler.h')
-rw-r--r--kresources/lib/webdavhandler.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/kresources/lib/webdavhandler.h b/kresources/lib/webdavhandler.h
index cdf616e9..668f99fd 100644
--- a/kresources/lib/webdavhandler.h
+++ b/kresources/lib/webdavhandler.h
@@ -22,10 +22,10 @@
#ifndef WEBDAVHANDLER_H
#define WEBDAVHANDLER_H
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qdom.h>
-#include <qdatetime.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqdom.h>
+#include <tqdatetime.h>
#include <kurl.h>
#include <kdepimmacros.h>
@@ -37,42 +37,42 @@ class KDE_EXPORT WebdavHandler
static KURL toDAV( const KURL& url );
- static QDomElement addElementNS( QDomDocument &doc, QDomNode &node,
- const QString &ns, const QString &tag,
- const QString &value = QString::null );
- static QDomElement addElement( QDomDocument &, QDomNode &,
- const QString &tag, const QString &value = QString::null );
- static QDomElement addDavElement( QDomDocument &, QDomNode &,
- const QString &tag, const QString &value = QString::null );
+ static TQDomElement addElementNS( TQDomDocument &doc, TQDomNode &node,
+ const TQString &ns, const TQString &tag,
+ const TQString &value = TQString::null );
+ static TQDomElement addElement( TQDomDocument &, TQDomNode &,
+ const TQString &tag, const TQString &value = TQString::null );
+ static TQDomElement addDavElement( TQDomDocument &, TQDomNode &,
+ const TQString &tag, const TQString &value = TQString::null );
- static bool extractBool( const QDomElement &node,
- const QString &entry, bool &value );
- static bool extractLong( const QDomElement &node,
- const QString &entry, long &value );
- static bool extractFloat( const QDomElement &node,
- const QString &entry, float &value );
- static bool extractDateTime( const QDomElement &node,
- const QString &entry, QDateTime &value );
- static bool extractString( const QDomElement &node,
- const QString &entry, QString &value );
- static bool extractStringList( const QDomElement &node,
- const QString &entry, QStringList &value );
+ static bool extractBool( const TQDomElement &node,
+ const TQString &entry, bool &value );
+ static bool extractLong( const TQDomElement &node,
+ const TQString &entry, long &value );
+ static bool extractFloat( const TQDomElement &node,
+ const TQString &entry, float &value );
+ static bool extractDateTime( const TQDomElement &node,
+ const TQString &entry, TQDateTime &value );
+ static bool extractString( const TQDomElement &node,
+ const TQString &entry, TQString &value );
+ static bool extractStringList( const TQDomElement &node,
+ const TQString &entry, TQStringList &value );
/**
* Returns the value of the "etag" header if it can be found in the headers.
*/
- static const QString getEtagFromHeaders( const QString& );
+ static const TQString getEtagFromHeaders( const TQString& );
/**
* Return the representation of utc time in the time zone indicated by timeZoneId
*/
- static QDateTime utcAsZone( const QDateTime& utc, const QString& timeZoneId );
+ static TQDateTime utcAsZone( const TQDateTime& utc, const TQString& timeZoneId );
/**
* Return the UTC representation of local time in the time zone indicated by timeZoneId
*/
- static QDateTime zoneAsUtc( const QDateTime& zone, const QString& timeZoneId );
+ static TQDateTime zoneAsUtc( const TQDateTime& zone, const TQString& timeZoneId );
};
#endif