summaryrefslogtreecommitdiffstats
path: root/libkpimexchange/core/utils.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /libkpimexchange/core/utils.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkpimexchange/core/utils.h')
-rw-r--r--libkpimexchange/core/utils.h12
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://