summaryrefslogtreecommitdiffstats
path: root/buildtools/custommakefiles
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:07 -0600
commitb4e545384b42deff2db00ff815c4cacbeb5d1860 (patch)
treebfb3416e8ebc56b09f3df5e68eb0473dbc5ef13c /buildtools/custommakefiles
parent35f3f9ef33100c276b267e7e933709fdf737b2fe (diff)
downloadtdevelop-b4e545384b42deff2db00ff815c4cacbeb5d1860.tar.gz
tdevelop-b4e545384b42deff2db00ff815c4cacbeb5d1860.zip
Additional kde to tde renaming
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