summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/addcatdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/addcatdialog.cpp')
-rw-r--r--kstars/kstars/addcatdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kstars/kstars/addcatdialog.cpp b/kstars/kstars/addcatdialog.cpp
index 22c35355..07af36ff 100644
--- a/kstars/kstars/addcatdialog.cpp
+++ b/kstars/kstars/addcatdialog.cpp
@@ -145,10 +145,10 @@ TQString AddCatDialog::writeCatalogHeader() {
TQString name = ( acd->CatalogName->text().isEmpty() ? i18n("Custom") : acd->CatalogName->text() );
TQString pre = ( acd->Prefix->text().isEmpty() ? "CC" : acd->Prefix->text() );
- TQString h = TQString("# Name: %1\n").tqarg( name );
- h += TQString("# Prefix: %1\n").tqarg( pre );
- h += TQString("# Color: %1\n").tqarg( acd->ColorButton->color().name() );
- h += TQString("# Epoch: %1\n").tqarg( acd->Epoch->value() );
+ TQString h = TQString("# Name: %1\n").arg( name );
+ h += TQString("# Prefix: %1\n").arg( pre );
+ h += TQString("# Color: %1\n").arg( acd->ColorButton->color().name() );
+ h += TQString("# Epoch: %1\n").arg( acd->Epoch->value() );
h += TQString("# ");
for ( uint i=0; i < acd->FieldList->count(); ++i ) {
@@ -194,7 +194,7 @@ void AddCatDialog::slotShowDataFile() {
void AddCatDialog::slotPreviewCatalog() {
if ( validateDataFile() ) {
- KMessageBox::informationList( 0, i18n( "Preview of %1" ).tqarg( acd->CatalogName->text() ),
+ KMessageBox::informationList( 0, i18n( "Preview of %1" ).arg( acd->CatalogName->text() ),
TQStringList::split( "\n", CatalogContents ), i18n( "Catalog Preview" ) );
}
}
@@ -210,7 +210,7 @@ void AddCatDialog::slotCreateCatalog() {
KURL u( acd->CatalogURL->url() );
int r=KMessageBox::warningContinueCancel( 0,
i18n( "A file named \"%1\" already exists. "
- "Overwrite it?" ).tqarg( u.fileName() ),
+ "Overwrite it?" ).arg( u.fileName() ),
i18n( "Overwrite File?" ),
i18n( "&Overwrite" ) );
@@ -220,7 +220,7 @@ void AddCatDialog::slotCreateCatalog() {
TQFile OutFile( acd->CatalogURL->url() );
if ( ! OutFile.open( IO_WriteOnly ) ) {
KMessageBox::sorry( 0,
- i18n( "Could not open the file %1 for writing." ).tqarg( acd->CatalogURL->url() ),
+ i18n( "Could not open the file %1 for writing." ).arg( acd->CatalogURL->url() ),
i18n( "Error Opening Output File" ) );
} else {
TQTextStream outStream( &OutFile );