From f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:38:41 -0600 Subject: Remove additional unneeded tq method conversions --- kexi/core/kexiprojectdata.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kexi/core/kexiprojectdata.cpp') diff --git a/kexi/core/kexiprojectdata.cpp b/kexi/core/kexiprojectdata.cpp index 9f0106bcf..9b9203c8f 100644 --- a/kexi/core/kexiprojectdata.cpp +++ b/kexi/core/kexiprojectdata.cpp @@ -155,13 +155,13 @@ TQString KexiProjectData::infoString(bool nobr) const { if (constConnectionData()->fileName().isEmpty()) { //server-based - return TQString(nobr ? "" : "") + TQString("\"%1\"").tqarg(databaseName()) + (nobr ? "" : "") + return TQString(nobr ? "" : "") + TQString("\"%1\"").arg(databaseName()) + (nobr ? "" : "") + (nobr ? " " : " ") + i18n("database connection", "(connection %1)") - .tqarg(constConnectionData()->serverInfoString()) + (nobr ? "" : ""); + .arg(constConnectionData()->serverInfoString()) + (nobr ? "" : ""); } //file-based return TQString(nobr ? "" : "") - + TQString("\"%1\"").tqarg(constConnectionData()->fileName()) + (nobr ? "" : ""); + + TQString("\"%1\"").arg(constConnectionData()->fileName()) + (nobr ? "" : ""); } void KexiProjectData::setReadOnly(bool set) -- cgit v1.2.3