summaryrefslogtreecommitdiffstats
path: root/buildtools/custommakefiles
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/custommakefiles')
-rw-r--r--buildtools/custommakefiles/customprojectpart.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildtools/custommakefiles/customprojectpart.cpp b/buildtools/custommakefiles/customprojectpart.cpp
index 50d69800..4010c742 100644
--- a/buildtools/custommakefiles/customprojectpart.cpp
+++ b/buildtools/custommakefiles/customprojectpart.cpp
@@ -122,10 +122,10 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const
action = new KAction( i18n( "Install (as root user)" ), 0,
this, TQT_SLOT( slotInstallWithKdesu() ),
- actionCollection(), "build_install_kdesu" );
+ actionCollection(), "build_install_tdesu" );
action->setToolTip( i18n( "Install as root user" ) );
action->setWhatsThis( i18n( "<b>Install</b><p>Runs <b>make install</b> command from the project directory with root privileges.<br>"
- "It is executed via kdesu command.<br>"
+ "It is executed via tdesu command.<br>"
"Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab." ) );
@@ -951,7 +951,7 @@ void CustomProjectPart::startMakeCommand( const TQString &dir, const TQString &t
cmdline.prepend( makeEnvironment() );
if ( withKdesu )
- cmdline = "kdesu -t -c '" + cmdline + "'";
+ cmdline = "tdesu -t -c '" + cmdline + "'";
m_buildCommand = dircmd + cmdline;
@@ -1053,8 +1053,8 @@ void CustomProjectPart::slotExecute()
if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autoinstall", false ) && ( isDirty() || !TQFileInfo( mainProgram() ).exists() ) )
{
m_executeAfterBuild = true;
- // Use kdesu??
- if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autokdesu", false ) )
+ // Use tdesu??
+ if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autotdesu", false ) )
//slotInstallWithKdesu assumes that it hasn't just been build...
_auto ? slotInstallWithKdesu() : startMakeCommand( buildDirectory(), TQString::tqfromLatin1( "install" ), true );
else