summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/history
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:48:31 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:48:31 -0600
commitc48e769eb275917717e2b55eb869f7e559293ac8 (patch)
tree8f650b907e21c918b826f854dbe1c8174cc2c0c6 /kopete/plugins/history
parent8011d84f483f3628f3f04ea5cb2c1c3c86b2dba7 (diff)
downloadtdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.tar.gz
tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kopete/plugins/history')
-rw-r--r--kopete/plugins/history/converter.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/plugins/history/converter.cpp b/kopete/plugins/history/converter.cpp
index 2bf748ce..1c5c573d 100644
--- a/kopete/plugins/history/converter.cpp
+++ b/kopete/plugins/history/converter.cpp
@@ -71,32 +71,32 @@ void HistoryPlugin::convertOldHistory()
if(fi->fileName() == "MSNProtocol" || fi->fileName() == "msn_logs" )
{
protocolId="MSNProtocol";
- KGlobal::config()->setGroup("MSN");
- accountId=KGlobal::config()->readEntry( "UserID" );
+ TDEGlobal::config()->setGroup("MSN");
+ accountId=TDEGlobal::config()->readEntry( "UserID" );
}
else if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" )
{
protocolId="ICTQProtocol";
- KGlobal::config()->setGroup("ICQ");
- accountId=KGlobal::config()->readEntry( "UIN" );
+ TDEGlobal::config()->setGroup("ICQ");
+ accountId=TDEGlobal::config()->readEntry( "UIN" );
}
else if(fi->fileName() == "AIMProtocol" || fi->fileName() == "aim_logs" )
{
protocolId="AIMProtocol";
- KGlobal::config()->setGroup("AIM");
- accountId=KGlobal::config()->readEntry( "UserID" );
+ TDEGlobal::config()->setGroup("AIM");
+ accountId=TDEGlobal::config()->readEntry( "UserID" );
}
else if(fi->fileName() == "OscarProtocol" )
{
protocolId="AIMProtocol";
- KGlobal::config()->setGroup("OSCAR");
- accountId=KGlobal::config()->readEntry( "UserID" );
+ TDEGlobal::config()->setGroup("OSCAR");
+ accountId=TDEGlobal::config()->readEntry( "UserID" );
}
else if(fi->fileName() == "JabberProtocol" || fi->fileName() == "jabber_logs")
{
protocolId="JabberProtocol";
- KGlobal::config()->setGroup("Jabber");
- accountId=KGlobal::config()->readEntry( "UserID" );
+ TDEGlobal::config()->setGroup("Jabber");
+ accountId=TDEGlobal::config()->readEntry( "UserID" );
}
//TODO: gadu, wp
}
@@ -303,8 +303,8 @@ void HistoryPlugin::convertOldHistory()
bool HistoryPlugin::detectOldHistory()
{
- KGlobal::config()->setGroup("History Plugin");
- TQString version=KGlobal::config()->readEntry( "Version" ,"0.6" );
+ TDEGlobal::config()->setGroup("History Plugin");
+ TQString version=TDEGlobal::config()->readEntry( "Version" ,"0.6" );
if(version != "0.6")
return false;