summaryrefslogtreecommitdiffstats
path: root/tdesu/tdesu/tdesu.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-11-24 17:47:01 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-11-24 17:47:01 -0600
commita8303672a3eb80e690eb9a044ca580d80141ae67 (patch)
tree9f78d057906c2c671738f604139c48df62b94283 /tdesu/tdesu/tdesu.cpp
parenta615b2013ac87286aa4c9f8494f0db685ab530e1 (diff)
downloadtdebase-a8303672a3eb80e690eb9a044ca580d80141ae67.tar.gz
tdebase-a8303672a3eb80e690eb9a044ca580d80141ae67.zip
Rename KDEsu->TDEsu to provide consistency with previous renamings.
This relates to bug report 1707.
Diffstat (limited to 'tdesu/tdesu/tdesu.cpp')
-rw-r--r--tdesu/tdesu/tdesu.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdesu/tdesu/tdesu.cpp b/tdesu/tdesu/tdesu.cpp
index 47673e2b8..d75c0e83a 100644
--- a/tdesu/tdesu/tdesu.cpp
+++ b/tdesu/tdesu/tdesu.cpp
@@ -141,7 +141,7 @@ static int startApp()
// Stop daemon and exit?
if (args->isSet("s"))
{
- KDEsuClient client;
+ TDEsuClient client;
if (client.ping() == -1)
{
kdError(1206) << "Daemon not running -- nothing to stop\n";
@@ -248,7 +248,7 @@ static int startApp()
// Check for daemon and start if necessary
bool just_started = false;
bool have_daemon = true;
- KDEsuClient client;
+ TDEsuClient client;
if (!client.isServerSGID())
{
kdWarning(1206) << "Daemon not safe (not sgid), not using it.\n";
@@ -352,7 +352,7 @@ static int startApp()
TDEStartupInfoData data;
data.setSilent( TDEStartupInfoData::Yes );
TDEStartupInfo::sendChange( id, data );
- KDEsuDialog dlg(user, auth_user, keep && !terminal,icon, withIgnoreButton, timeout);
+ TDEsuDialog dlg(user, auth_user, keep && !terminal,icon, withIgnoreButton, timeout);
if (prompt)
dlg.addLine(i18n("Command:"), command);
if ((priority != 50) || (scheduler != SuProcess::SchedNormal))
@@ -365,12 +365,12 @@ static int startApp()
dlg.addLine(i18n("Priority:"), prio);
}
int ret = dlg.exec();
- if (ret == KDEsuDialog::Rejected)
+ if (ret == TDEsuDialog::Rejected)
{
TDEStartupInfo::sendFinish( id );
exit(0);
}
- if (ret == KDEsuDialog::AsUser)
+ if (ret == TDEsuDialog::AsUser)
change_uid = false;
password = dlg.password();
keep = dlg.keep();