diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:39:49 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-06 03:48:48 +0200 |
commit | 161e93feae40489201edee480db6802a9a61b0a4 (patch) | |
tree | 77e3e4aeae8d388ac7a7f5d1f0a8cf67045ee4a8 /libktorrent/migrate/ccmigrate.cpp | |
parent | 1d7c126b63cbc97bba847f61e7c9ee89b80a390c (diff) | |
download | ktorrent-161e93feae40489201edee480db6802a9a61b0a4.tar.gz ktorrent-161e93feae40489201edee480db6802a9a61b0a4.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit bb37c4052a9edfff2196984cef241b1ce2df7bb3)
Diffstat (limited to 'libktorrent/migrate/ccmigrate.cpp')
-rw-r--r-- | libktorrent/migrate/ccmigrate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/migrate/ccmigrate.cpp b/libktorrent/migrate/ccmigrate.cpp index 3975de4..e824830 100644 --- a/libktorrent/migrate/ccmigrate.cpp +++ b/libktorrent/migrate/ccmigrate.cpp @@ -116,13 +116,13 @@ namespace bt // open the old current_chunks file File old_cc; if (!old_cc.open(current_chunks,"rb")) - throw Error(i18n("Cannot open file %1 : %2").tqarg(current_chunks).tqarg(old_cc.errorString())); + throw Error(i18n("Cannot open file %1 : %2").arg(current_chunks).arg(old_cc.errorString())); // open a new file in the /tmp dir File new_cc; TQString tmp = current_chunks + ".tmp"; if (!new_cc.open(tmp,"wb")) - throw Error(i18n("Cannot open file %1 : %2").tqarg(tmp).tqarg(old_cc.errorString())); + throw Error(i18n("Cannot open file %1 : %2").arg(tmp).arg(old_cc.errorString())); // read the number of chunks Uint32 num = 0; |