From 3758f152aaee9ea9214992189600dfd4c5ac758f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:21:14 -0600 Subject: Rename additional global TQt functions --- konversation/src/blowfish/blowfish.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/konversation/src/blowfish/blowfish.cpp b/konversation/src/blowfish/blowfish.cpp index 5115501..eb34596 100644 --- a/konversation/src/blowfish/blowfish.cpp +++ b/konversation/src/blowfish/blowfish.cpp @@ -65,8 +65,8 @@ namespace Konversation TQCString ckey( key.length()+2 ); TQCString result( cipher.length()+1 ); - qstrncpy(result.data(), cipher.data(), cipher.length()); - qstrncpy(ckey.data(), key.data(), key.length()+1); + tqstrncpy(result.data(), cipher.data(), cipher.length()); + tqstrncpy(ckey.data(), key.data(), key.length()+1); tmp2 = decrypt_string(ckey.data(),result.data()); const char *pfx="(e) "; // If it's a CTCP we don't want to have the (e) interfering with the processing @@ -97,8 +97,8 @@ namespace Konversation TQCString result( cipher.length()+1 ); TQCString ckey( key.length()+2 ); - qstrncpy(ckey.data(), key.data(), key.length()+1); - qstrncpy(result.data(), cipher.data(), cipher.length()); + tqstrncpy(ckey.data(), key.data(), key.length()+1); + tqstrncpy(result.data(), cipher.data(), cipher.length()); tmp2 = decrypt_string(ckey.data(),result.data()); cipher = tmp2; if(cipher.mid(0,2) == "@@") -- cgit v1.2.1