summaryrefslogtreecommitdiffstats
path: root/libktorrent/util/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/util/file.cpp')
-rw-r--r--libktorrent/util/file.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/util/file.cpp b/libktorrent/util/file.cpp
index d27ccba..f757142 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").arg(file).arg(strerror(errno)));
+ throw Error(i18n("Cannot write to %1 : %2").tqarg(file).tqarg(strerror(errno)));
}
return ret;
}
@@ -98,7 +98,7 @@ namespace bt
if (ferror(fptr))
{
clearerr(fptr);
- throw Error(i18n("Cannot read from %1").arg(file));
+ throw Error(i18n("Cannot read from %1").tqarg(file));
}
return ret;
}