summaryrefslogtreecommitdiffstats
path: root/kresources/newexchange/exchangeconvertercontact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/newexchange/exchangeconvertercontact.cpp')
-rw-r--r--kresources/newexchange/exchangeconvertercontact.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kresources/newexchange/exchangeconvertercontact.cpp b/kresources/newexchange/exchangeconvertercontact.cpp
index 88ad3a15..40e0498a 100644
--- a/kresources/newexchange/exchangeconvertercontact.cpp
+++ b/kresources/newexchange/exchangeconvertercontact.cpp
@@ -585,13 +585,13 @@ TQDomDocument ExchangeConverterContact::createWebDAV( Addressee addr )
// FIXME: Exchange uses the date in the form 8/13, i.e. possibly without a
// year! How shall I deal with this?
/* TQDate dt = addr.birthday().date();
- TQString str = (dt.isValid())?(dt.toString( Qt::ISODate )):(TQString::null);
+ TQString str = (dt.isValid())?(dt.toString( TQt::ISODate )):(TQString());
if ( !str.isEmpty() ) {
TQDomElement el = domContactProperty( "bday", str );
el.setAttribute( "b:dt", "date" );
}
- dt = TQDate::fromString( addr.custom( "KADDRESSBOOK", "X-Anniversary" ), Qt::ISODate );
- str = (dt.isValid())?(dt.toString( Qt::ISODate )):(TQString::null);
+ dt = TQDate::fromString( addr.custom( "KADDRESSBOOK", "X-Anniversary" ), TQt::ISODate );
+ str = (dt.isValid())?(dt.toString( TQt::ISODate )):(TQString());
if ( !str.isEmpty() ) {
TQDomElement el = domContactProperty( "weddinganniversary", str );
el.setAttribute( "b:dt", "date" );