diff options
Diffstat (limited to 'libktorrent/util/file.cpp')
-rw-r--r-- | libktorrent/util/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/util/file.cpp b/libktorrent/util/file.cpp index f757142..d27ccba 100644 --- a/libktorrent/util/file.cpp +++ b/libktorrent/util/file.cpp @@ -84,7 +84,7 @@ namespace bt if (errno == ENOSPC) Out() << "Disk full !" << endl; - throw Error(i18n("Cannot write to %1 : %2").tqarg(file).tqarg(strerror(errno))); + throw Error(i18n("Cannot write to %1 : %2").arg(file).arg(strerror(errno))); } return ret; } @@ -98,7 +98,7 @@ namespace bt if (ferror(fptr)) { clearerr(fptr); - throw Error(i18n("Cannot read from %1").tqarg(file)); + throw Error(i18n("Cannot read from %1").arg(file)); } return ret; } |