summaryrefslogtreecommitdiffstats
path: root/buildtools/autotools/autoprojectpart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/autotools/autoprojectpart.cpp')
-rw-r--r--buildtools/autotools/autoprojectpart.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/buildtools/autotools/autoprojectpart.cpp b/buildtools/autotools/autoprojectpart.cpp
index e6e2e272..bb9a2e68 100644
--- a/buildtools/autotools/autoprojectpart.cpp
+++ b/buildtools/autotools/autoprojectpart.cpp
@@ -155,10 +155,10 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr
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."));
action->setGroup("autotools");
@@ -706,7 +706,7 @@ void AutoProjectPart::startMakeCommand(const TQString &dir, const TQString &targ
m_buildCommand = constructMakeCommandLine(dir, target);
if (withKdesu)
- m_buildCommand = "kdesu -t -c '" + m_buildCommand + "'";
+ m_buildCommand = "tdesu -t -c '" + m_buildCommand + "'";
if (!m_buildCommand.isNull())
makeFrontend()->queueCommand(dir, m_buildCommand);
@@ -1099,8 +1099,8 @@ void AutoProjectPart::slotExecute()
if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autoinstall", false) && isDirty() ){
m_executeAfterBuild = true;
- // Use kdesu??
- if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autokdesu", false) ){
+ // Use tdesu??
+ if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autotdesu", false) ){
//slotInstallWithKdesu assumes that it hasn't just been build...
kdDebug(9020) << "slotExecute: before startMakeCommand" << endl;
_auto ? slotInstallWithKdesu() : startMakeCommand(buildDirectory(), TQString::tqfromLatin1("install"), true);
@@ -1451,7 +1451,7 @@ void AutoProjectPart::startSimpleMakeCommand( const TQString & dir, const TQStri
m_buildCommand = dircmd + cmdline;
if (withKdesu)
- m_buildCommand = "kdesu -t -c '" + m_buildCommand + "'";
+ m_buildCommand = "tdesu -t -c '" + m_buildCommand + "'";
if (!m_buildCommand.isNull())
makeFrontend()->queueCommand(dir, m_buildCommand);