summaryrefslogtreecommitdiffstats
path: root/kdesudo/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:23:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:23:33 -0600
commit8e880edd0a3e8e8cf05743b8f7b47e81dd9f08bf (patch)
treef0060b4bd1140dc19fe7be7c0749d8748cf7e96b /kdesudo/main.cpp
parent99cca0fd3bc7816af12bc6b6494137c8753ae45c (diff)
downloadtdesudo-8e880edd0a3e8e8cf05743b8f7b47e81dd9f08bf.tar.gz
tdesudo-8e880edd0a3e8e8cf05743b8f7b47e81dd9f08bf.zip
Additional kde to tde renaming
Diffstat (limited to 'kdesudo/main.cpp')
-rw-r--r--kdesudo/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdesudo/main.cpp b/kdesudo/main.cpp
index c02dfac..9fa63f1 100644
--- a/kdesudo/main.cpp
+++ b/kdesudo/main.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- kdesudo.cpp - description
+ tdesudo.cpp - description
-------------------
begin : Sam Feb 15 15:42:12 CET 2003
copyright : (C) 2003 by Robert Gruber <rgruber@users.sourceforge.net>
@@ -25,7 +25,7 @@
#include <kaboutdata.h>
#include <klocale.h>
-#include "kdesudo.h"
+#include "tdesudo.h"
#include <kmessagebox.h>
#include <kdesktopfile.h>
#include <kiconloader.h>
@@ -63,7 +63,7 @@ static KCmdLineOptions options[] =
int main(int argc, char **argv)
{
- KAboutData aboutData("kdesudo", I18N_NOOP("KdeSudo"),
+ KAboutData aboutData("tdesudo", I18N_NOOP("KdeSudo"),
VERSION, description, KAboutData::License_GPL,
"(c) 2007-2008, Anthony Mercatante", 0, 0, "tonio@ubuntu.com");
aboutData.addAuthor("Robert Gruber",0, "rgruber@users.sourceforge.net");
@@ -98,7 +98,7 @@ int main(int argc, char **argv)
}
if ((!args->isSet("c")) && (!args->count())) {
- kdError() << I18N_NOOP("You must provide the name of the executable you want to run as an argument to kdesudo") << endl;
+ kdError() << I18N_NOOP("You must provide the name of the executable you want to run as an argument to tdesudo") << endl;
exit(1);
}
@@ -140,9 +140,9 @@ int main(int argc, char **argv)
else
name = executable;
- KdeSudo *kdesudo = new KdeSudo(0,0,icon,name,withIgnoreButton);
+ KdeSudo *tdesudo = new KdeSudo(0,0,icon,name,withIgnoreButton);
- a.setMainWidget(kdesudo);
+ a.setMainWidget(tdesudo);
args->clear();
return a.exec();