From dc07846059a60d069687585cc72ff501a2096296 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:57:28 -0600 Subject: Remove additional unneeded tq method conversions --- arts/builder/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arts/builder/main.cpp') diff --git a/arts/builder/main.cpp b/arts/builder/main.cpp index 558f650c..229f4f61 100644 --- a/arts/builder/main.cpp +++ b/arts/builder/main.cpp @@ -441,7 +441,7 @@ void ArtsBuilderWindow::publish() checkName(); structure->publish(); KMessageBox::information(this, - i18n("The structure has been published as: '%1' on the server.").tqarg( structure->name().c_str() )); + i18n("The structure has been published as: '%1' on the server.").arg( structure->name().c_str() )); } TQString ArtsBuilderWindow::getOpenFilename(const char *pattern, const char *initialDir) @@ -587,7 +587,7 @@ bool ArtsBuilderWindow::save(TQString filename) if(file.status()) { KMessageBox::sorry(this, i18n("The file '%1' could not be opened for writing: %2") - .tqarg(filename).tqarg(strerror(file.status())), + .arg(filename).arg(strerror(file.status())), i18n("aRts Warning")); return false; } @@ -597,7 +597,7 @@ bool ArtsBuilderWindow::save(TQString filename) if(!file.close()) { KMessageBox::sorry(this, i18n("Saving to file '%1' could not be finished correctly: %2") - .tqarg(filename).tqarg(strerror(file.status())), + .arg(filename).arg(strerror(file.status())), i18n("aRts Warning")); return false; } @@ -872,7 +872,7 @@ ArtsBuilderApp::ArtsBuilderApp(TQString filename) mainWindow->open(filename); } else { KMessageBox::sorry(0, - i18n("The specified file '%1' does not exist.").tqarg(filename), + i18n("The specified file '%1' does not exist.").arg(filename), i18n("aRts Warning")); } } -- cgit v1.2.1