summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/opscolors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/opscolors.cpp')
-rw-r--r--kstars/kstars/opscolors.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kstars/kstars/opscolors.cpp b/kstars/kstars/opscolors.cpp
index 66358f25..a1c8363e 100644
--- a/kstars/kstars/opscolors.cpp
+++ b/kstars/kstars/opscolors.cpp
@@ -123,7 +123,7 @@ void OpsColors::slotPreset( int index ) {
TQStringList::Iterator it = PresetFileList.at( index );
bool result = setColors( *it );
if (!result) {
- TQString message = i18n( "The specified color scheme file (%1) could not be found, or was corrupt." ).tqarg( TQString(*it) );
+ TQString message = i18n( "The specified color scheme file (%1) could not be found, or was corrupt." ).arg( TQString(*it) );
KMessageBox::sorry( 0, message, i18n( "Could Not Set Color Scheme" ) );
}
}
@@ -213,7 +213,7 @@ void OpsColors::slotRemovePreset() {
TQFile colorFile;
colorFile.setName( locateLocal( "appdata", filename ) ); //determine filename in local user KDE directory tree.
if ( !colorFile.remove() ) {
- TQString message = i18n( "Could not delete the file: %1" ).tqarg( colorFile.name() );
+ TQString message = i18n( "Could not delete the file: %1" ).arg( colorFile.name() );
KMessageBox::sorry( 0, message, i18n( "Error Deleting File" ) );
}
@@ -224,7 +224,7 @@ void OpsColors::slotRemovePreset() {
for( unsigned int i=0; i<slist.count(); ++i )
stream << slist[i] << endl;
} else {
- TQString message = i18n( "Could not find an entry named %1 in colors.dat." ).tqarg( name );
+ TQString message = i18n( "Could not find an entry named %1 in colors.dat." ).arg( name );
KMessageBox::sorry( 0, message, i18n( "Scheme Not Found" ) );
}
cdatFile.close();