diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
commit | dc07846059a60d069687585cc72ff501a2096296 (patch) | |
tree | 432ead5b09c6ace7e804629f1f74a3ed58f003e0 /arts/builder/main.cpp | |
parent | 3c299dfe48c0060272c2966fff599b3b417e2ee4 (diff) | |
download | tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.tar.gz tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'arts/builder/main.cpp')
-rw-r--r-- | arts/builder/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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")); } } |