summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksystemlog/src/reader.cpp')
-rw-r--r--ksystemlog/src/reader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksystemlog/src/reader.cpp b/ksystemlog/src/reader.cpp
index b4dec8d..58cffee 100644
--- a/ksystemlog/src/reader.cpp
+++ b/ksystemlog/src/reader.cpp
@@ -137,7 +137,7 @@ TQFile* Reader::openFile(TQString name) {
//If the file does not exist
if(! file->exists()) {
- message=i18n("The file '%1' does not exist.").tqarg(name);
+ message=i18n("The file '%1' does not exist.").arg(name);
KMessageBox::error(logManager->getView(), message, i18n("The File Does Not Exist"), KMessageBox::Notify);
emit statusbarChanged(message);
return(NULL);
@@ -146,7 +146,7 @@ TQFile* Reader::openFile(TQString name) {
//If we can open the file
if( !file->open( IO_ReadOnly ) ) {
//It could not be opened
- message=i18n("You do not have sufficient permissions to read '%1'.").tqarg(name);
+ message=i18n("You do not have sufficient permissions to read '%1'.").arg(name);
KMessageBox::error(logManager->getView(), message, i18n("Insufficient Permissions"), KMessageBox::Notify);
emit statusbarChanged(message);
return(NULL);