summaryrefslogtreecommitdiffstats
path: root/kresources/slox/webdavhandler.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /kresources/slox/webdavhandler.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/slox/webdavhandler.h')
-rw-r--r--kresources/slox/webdavhandler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/slox/webdavhandler.h b/kresources/slox/webdavhandler.h
index 2d428619..bbaf897f 100644
--- a/kresources/slox/webdavhandler.h
+++ b/kresources/slox/webdavhandler.h
@@ -37,14 +37,14 @@ class SloxBase;
class KDE_EXPORT SloxItem
{
public:
- enum Status { Invalid, Delete, Create, New };
+ enum tqStatus { Invalid, Delete, Create, New };
SloxItem();
TQDomNode domNode;
TQString sloxId;
TQString clientId;
- Status status;
+ tqStatus status;
TQString response;
TQString responseDescription;
};
@@ -67,10 +67,10 @@ class KDE_EXPORT WebdavHandler
static TQDomElement addSloxElement( SloxBase *res,
TQDomDocument &, TQDomNode &,
const TQString &tag,
- const TQString &text = TQString::null );
+ const TQString &text = TQString() );
- static TQDateTime sloxToQDateTime( const TQString &str );
- static TQDateTime sloxToQDateTime( const TQString &str,
+ static TQDateTime sloxToTQDateTime( const TQString &str );
+ static TQDateTime sloxToTQDateTime( const TQString &str,
const TQString &timeZoneId );
static TQString qDateTimeToSlox( const TQDateTime &dt );
static TQString qDateTimeToSlox( const TQDateTime &dt,
@@ -78,7 +78,7 @@ class KDE_EXPORT WebdavHandler
static TQValueList<SloxItem> getSloxItems( SloxBase *res, const TQDomDocument &doc );
- void clearSloxAttributeStatus();
+ void clearSloxAttributetqStatus();
void parseSloxAttribute( const TQDomElement & );
void setSloxAttributes( KCal::Incidence * );
void setSloxAttributes( KABC::Addressee & );