diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-12-29 20:57:17 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-12-29 20:57:17 +0100 |
commit | c49165ddb7b3a260298e606fc4d4e9fb3b290bca (patch) | |
tree | 29300d57fdee4cf60ee722ea5ba6d1aa99a5f0cd /kopete/plugins/history | |
parent | 2d5f9c55daa532c5f19e6defebc7767c6d04c556 (diff) | |
download | tdenetwork-c49165ddb7b3a260298e606fc4d4e9fb3b290bca.tar.gz tdenetwork-c49165ddb7b3a260298e606fc4d4e9fb3b290bca.zip |
kopete: Fix unintended renaming ICQ => ICTQ
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kopete/plugins/history')
-rw-r--r-- | kopete/plugins/history/converter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/plugins/history/converter.cpp b/kopete/plugins/history/converter.cpp index 0872e906..4285309c 100644 --- a/kopete/plugins/history/converter.cpp +++ b/kopete/plugins/history/converter.cpp @@ -68,9 +68,9 @@ void HistoryPlugin::convertOldHistory() if(accountId.isNull() || protocolId.isNull()) { - if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) + if(fi->fileName() == "ICQProtocol" || fi->fileName() == "icq_logs" ) { - protocolId="ICTQProtocol"; + protocolId="ICQProtocol"; TDEGlobal::config()->setGroup("ICQ"); accountId=TDEGlobal::config()->readEntry( "UIN" ); } @@ -319,7 +319,7 @@ bool HistoryPlugin::detectOldHistory() if( dynamic_cast<Kopete::Protocol *>( Kopete::PluginManager::self()->plugin( fi->fileName() ) ) ) return true; - if(fi->fileName() == "ICTQProtocol" || fi->fileName() == "icq_logs" ) + if(fi->fileName() == "ICQProtocol" || fi->fileName() == "icq_logs" ) return true; else if(fi->fileName() == "AIMProtocol" || fi->fileName() == "aim_logs" ) return true; |