From 9d6927a7d6a543332f828bffedf65eecf6774c6d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:33:27 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/coff/base/cdb_parser.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/coff/base/cdb_parser.cpp') diff --git a/src/coff/base/cdb_parser.cpp b/src/coff/base/cdb_parser.cpp index eb7495b..87d9d97 100644 --- a/src/coff/base/cdb_parser.cpp +++ b/src/coff/base/cdb_parser.cpp @@ -101,7 +101,7 @@ CDB::Object::~Object() void CDB::Object::log(Log::LineType type, const TQString &message) { - _log.log(type, message + " " + i18n("at line #%1, column #%2").tqarg(_line+1).tqarg(_col+1)); + _log.log(type, message + " " + i18n("at line #%1, column #%2").arg(_line+1).arg(_col+1)); } void CDB::Object::logMalformed(const TQString &detail) @@ -125,7 +125,7 @@ bool CDB::Object::readAndCheckChar(char c) char r; if ( !readChar(r) ) return false; if ( r!=c ) { - logMalformed(i18n("was expecting '%1'").tqarg(c)); + logMalformed(i18n("was expecting '%1'").arg(c)); return false; } return true; @@ -197,7 +197,7 @@ bool CDB::Object::readBool(bool &b) if ( c=='0' ) b = false; else if ( c=='1' ) b = true; else { - logMalformed(i18n("was expecting a bool ('%1')").tqarg(c)); + logMalformed(i18n("was expecting a bool ('%1')").arg(c)); return false; } return true; -- cgit v1.2.3