summaryrefslogtreecommitdiffstats
path: root/kiosktool/kioskdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/kioskdata.cpp')
-rw-r--r--kiosktool/kioskdata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kiosktool/kioskdata.cpp b/kiosktool/kioskdata.cpp
index ff45343..df6fdae 100644
--- a/kiosktool/kioskdata.cpp
+++ b/kiosktool/kioskdata.cpp
@@ -267,7 +267,7 @@ bool KioskData::load()
TQFile file( filename );
if ( !file.open( IO_ReadOnly ) )
{
- m_errorMsg = i18n("<qt>Could not open <b>%1</b></qt>").tqarg(filename);
+ m_errorMsg = i18n("<qt>Could not open <b>%1</b></qt>").arg(filename);
return false;
}
@@ -276,7 +276,7 @@ bool KioskData::load()
int errorCol;
if ( !doc.setContent( &file, &errorMsg, &errorRow, &errorCol ) )
{
- m_errorMsg = i18n("<qt>Syntax error in <b>%1</b><br>Line %3, column %4: %2</qt>").tqarg(filename, errorMsg).tqarg(errorRow).tqarg(errorCol);
+ m_errorMsg = i18n("<qt>Syntax error in <b>%1</b><br>Line %3, column %4: %2</qt>").arg(filename, errorMsg).arg(errorRow).arg(errorCol);
file.close();
return false;
}