From a4741f6c87d0ed48e18c7cfb05df66e94b9f97a7 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:36:50 -0600 Subject: Remove additional unneeded tq method conversions --- kiosktool/kioskdata.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kiosktool/kioskdata.cpp') 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("Could not open %1").tqarg(filename); + m_errorMsg = i18n("Could not open %1").arg(filename); return false; } @@ -276,7 +276,7 @@ bool KioskData::load() int errorCol; if ( !doc.setContent( &file, &errorMsg, &errorRow, &errorCol ) ) { - m_errorMsg = i18n("Syntax error in %1
Line %3, column %4: %2
").tqarg(filename, errorMsg).tqarg(errorRow).tqarg(errorCol); + m_errorMsg = i18n("Syntax error in %1
Line %3, column %4: %2
").arg(filename, errorMsg).arg(errorRow).arg(errorCol); file.close(); return false; } -- cgit v1.2.3