summaryrefslogtreecommitdiffstats
path: root/konversation/src/nicksonline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/nicksonline.cpp')
-rw-r--r--konversation/src/nicksonline.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/konversation/src/nicksonline.cpp b/konversation/src/nicksonline.cpp
index 37d6ad9..68ccf2a 100644
--- a/konversation/src/nicksonline.cpp
+++ b/konversation/src/nicksonline.cpp
@@ -223,7 +223,7 @@ TQListViewItem* NicksOnline::findNetworkRoot(const TQString& name)
* @return needWhois True if a WHOIS needs to be performed on the nick
* to get additional information.
*/
-TQString NicksOnline::getNickAdditionalInfo(NickInfoPtr nickInfo, KABC::Addressee addressee,
+TQString NicksOnline::getNickAdditionalInfo(NickInfoPtr nickInfo, TDEABC::Addressee addressee,
bool& needWhois)
{
TQString info;
@@ -310,7 +310,7 @@ void NicksOnline::updateServerOnlineList(Server* servr)
// Which server did NickInfo come from?
Server* server=nickInfo->getServer();
// Get addressbook entry (if any) for the nick.
- KABC::Addressee addressee = nickInfo->getAddressee();
+ TDEABC::Addressee addressee = nickInfo->getAddressee();
// Construct additional information string for nick.
bool needWhois = false;
TQString nickAdditionalInfo = getNickAdditionalInfo(nickInfo, addressee, needWhois);
@@ -398,7 +398,7 @@ void NicksOnline::updateServerOnlineList(Server* servr)
if (!nickRoot) nickRoot = new NicksOnlineItem(NicksOnlineItem::NicknameItem,offlineRoot, nickname);
nickRoot->setText(nlvcServerName, serverName);
// Get addressbook entry for the nick.
- KABC::Addressee addressee = servr->getOfflineNickAddressee(nickname);
+ TDEABC::Addressee addressee = servr->getOfflineNickAddressee(nickname);
// Format additional information for the nick.
bool needWhois = false;
TQString nickAdditionalInfo = getNickAdditionalInfo(0, addressee, needWhois);
@@ -664,7 +664,7 @@ void NicksOnline::doCommand(int id)
// Get NickInfo object corresponding to the nickname.
NickInfoPtr nickInfo = server->getNickInfo(nickname);
// Get addressbook entry for the nick.
- KABC::Addressee addressee;
+ TDEABC::Addressee addressee;
if(nickInfo)
{
@@ -935,7 +935,7 @@ void NicksOnline::refreshItem(TQListViewItem* item)
if (server)
{
NickInfoPtr nickInfo = server->getNickInfo(nickname);
- KABC::Addressee addressee;
+ TDEABC::Addressee addressee;
if (nickInfo)
addressee = nickInfo->getAddressee();
else