diff options
Diffstat (limited to 'buildtools/autotools/autosubprojectview.cpp')
| -rw-r--r-- | buildtools/autotools/autosubprojectview.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/buildtools/autotools/autosubprojectview.cpp b/buildtools/autotools/autosubprojectview.cpp index 53bb69a4..eca543da 100644 --- a/buildtools/autotools/autosubprojectview.cpp +++ b/buildtools/autotools/autosubprojectview.cpp @@ -280,7 +280,7 @@ void AutoSubprojectView::slotContextMenu( KListView *, TQListViewItem *item, con  	if ( !item )  		return ; -	KPopupMenu popup( i18n( "Subproject: %1" ).tqarg( item->text( 0 ) ), this ); +	KPopupMenu popup( i18n( "Subproject: %1" ).arg( item->text( 0 ) ), this );  	subProjectOptionsAction->plug( &popup );  	popup.insertSeparator(); @@ -448,13 +448,13 @@ void AutoSubprojectView::slotRemoveSubproject()      {          topsubdirs = false;          if( it == list.end() ){ -            KMessageBox::sorry(this, i18n("There is no subproject %1 in SUBDIRS").tqarg(spitem->subdir)); +            KMessageBox::sorry(this, i18n("There is no subproject %1 in SUBDIRS").arg(spitem->subdir));              return;          }      } -    RemoveSubprojectDialog dlg(i18n("Remove Subproject %1").tqarg(spitem->text(0)), -        i18n("Do you really want to remove subproject %1 with all targets and files?").tqarg(spitem->text(0))); +    RemoveSubprojectDialog dlg(i18n("Remove Subproject %1").arg(spitem->text(0)), +        i18n("Do you really want to remove subproject %1 with all targets and files?").arg(spitem->text(0)));      if( dlg.exec() ){      bool removeSources = dlg.removeFromDisk(); @@ -1045,7 +1045,7 @@ void AutoSubprojectView::slotManageBuildCommands( )  		{  			config->writeEntry(widget->commandsTable->text(i, 0),  				widget->commandsTable->text(i, 1)+":::"+ -				TQString("%1").tqarg(static_cast<TQComboTableItem*>(widget-> +				TQString("%1").arg(static_cast<TQComboTableItem*>(widget->  				commandsTable->item(i, 2))->currentItem()));  		}  		config->sync(); | 
