diff options
Diffstat (limited to 'libkpimexchange/core/utils.h')
-rw-r--r-- | libkpimexchange/core/utils.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkpimexchange/core/utils.h b/libkpimexchange/core/utils.h index 20b681416..c26eb72b2 100644 --- a/libkpimexchange/core/utils.h +++ b/libkpimexchange/core/utils.h @@ -21,30 +21,30 @@ #ifndef KDEPIM_EXCHANGE_UTILS_H #define KDEPIM_EXCHANGE_UTILS_H -#include <qstring.h> -#include <qdom.h> +#include <tqstring.h> +#include <tqdom.h> #include <kurl.h> /** In a document doc with node node, add an element with name ns and tagname tag. Return the new element */ -QDomElement addElement( QDomDocument& doc, QDomNode& node, const QString& ns, const QString& tag ); +TQDomElement addElement( TQDomDocument& doc, TQDomNode& node, const TQString& ns, const TQString& tag ); /** In a document doc with node node, add an element with namespace ns and tagname tag. Add a textnode in the element with text contents text. Return the new element. */ -QDomElement addElement( QDomDocument& doc, QDomNode& node, const QString& ns, const QString& tag, const QString& text ); +TQDomElement addElement( TQDomDocument& doc, TQDomNode& node, const TQString& ns, const TQString& tag, const TQString& text ); /** * Return the representation of utc time in the time zone indicated by timeZoneId */ -QDateTime utcAsZone( const QDateTime& utc, const QString& timeZoneId ); +TQDateTime utcAsZone( const TQDateTime& utc, const TQString& timeZoneId ); /** * Return the UTC representation of local time in the time zone indicated by timeZoneId */ -QDateTime zoneAsUtc( const QDateTime& zone, const QString& timeZoneId ); +TQDateTime zoneAsUtc( const TQDateTime& zone, const TQString& timeZoneId ); /** * Convert http:// url to webdav:// and https:// to webdavs:// |