diff options
Diffstat (limited to 'kdesudo/main.cpp')
-rw-r--r-- | kdesudo/main.cpp | 12 |
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 <[email protected]> @@ -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, "[email protected]"); aboutData.addAuthor("Robert Gruber",0, "[email protected]"); @@ -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(); |