summaryrefslogtreecommitdiffstats
path: root/tderesources/slox/kcalresourceslox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tderesources/slox/kcalresourceslox.cpp')
-rw-r--r--tderesources/slox/kcalresourceslox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tderesources/slox/kcalresourceslox.cpp b/tderesources/slox/kcalresourceslox.cpp
index 238b7183..bc3acce5 100644
--- a/tderesources/slox/kcalresourceslox.cpp
+++ b/tderesources/slox/kcalresourceslox.cpp
@@ -117,7 +117,7 @@ void KCalResourceSlox::init()
mAccounts = 0;
- mLock = new KABC::LockNull( true );
+ mLock = new TDEABC::LockNull( true );
enableChangeNotification();
}
@@ -185,7 +185,7 @@ bool KCalResourceSlox::doLoad()
// The SLOX contacts are loaded asynchronously, so make sure that they are
// actually loaded.
- KABC::StdAddressBook::self( true )->asyncLoad();
+ TDEABC::StdAddressBook::self( true )->asyncLoad();
#if 1
requestEvents();
@@ -603,7 +603,7 @@ void KCalResourceSlox::parseMembersAttribute( const TQDomElement &e,
TQDomElement memberElement = n.toElement();
if ( memberElement.tagName() == fieldName( Participant ) ) {
TQString member = memberElement.text();
- KABC::Addressee account;
+ TDEABC::Addressee account;
if ( mAccounts ) account = mAccounts->lookupUser( member );
else kdError() << "KCalResourceSlox: no accounts set" << endl;
TQString name;
@@ -686,7 +686,7 @@ void KCalResourceSlox::parseIncidenceAttribute( const TQDomElement &e,
incidence->clearAlarms();
}
} else if ( tag == fieldName( CreatedBy ) ) {
- KABC::Addressee a;
+ TDEABC::Addressee a;
if ( mAccounts ) a = mAccounts->lookupUser( text );
else kdDebug() << "KCalResourceSlox: no accounts set" << endl;
incidence->setOrganizer( Person( a.formattedName(), a.preferredEmail() ) );
@@ -1281,7 +1281,7 @@ void KCalResourceSlox::doClose()
}
}
-KABC::Lock *KCalResourceSlox::lock()
+TDEABC::Lock *KCalResourceSlox::lock()
{
return mLock;
}