diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-15 17:20:20 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-15 17:20:20 -0600 |
commit | 80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65 (patch) | |
tree | d200f3206607ae1a50c7873a80ab5ffd325d6c2a /tdefilereplace/main.cpp | |
parent | b23d738404d2fdf3445371a97fa267646b294394 (diff) | |
download | tdewebdev-80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65.tar.gz tdewebdev-80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65.zip |
Finish renaming KFileReplace->TDEFileReplace and fix related Quanta Plus internal references.
Diffstat (limited to 'tdefilereplace/main.cpp')
-rw-r--r-- | tdefilereplace/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tdefilereplace/main.cpp b/tdefilereplace/main.cpp index da78eb23..1ca0ce24 100644 --- a/tdefilereplace/main.cpp +++ b/tdefilereplace/main.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - main.cpp - Main file for the KFileReplace shell + main.cpp - Main file for the TDEFileReplace shell ------------------- begin : Thu Sep 16 14:14:09 2004 copyright : (C) 2004 by Andras Mantia <amantia@kde.org> @@ -34,14 +34,14 @@ static TDECmdLineOptions options[] = int main(int argc, char *argv[]) { - TDEAboutData about("tdefilereplace", I18N_NOOP("KFileReplace"), version, description, + TDEAboutData about("tdefilereplace", I18N_NOOP("TDEFileReplace"), version, description, TDEAboutData::License_GPL_V2, "(C) 2004-2005 Andras Mantia\n(C) 2004-2005 Emiliano Gulmini\n(C) 1999-2002 Francois Dupoux", I18N_NOOP("Part of the KDEWebDev module."), "http://www.kdewebdev.org"); about.addAuthor("Andras Mantia", I18N_NOOP("Shell author, KPart creator, co-maintainer"), "amantia@kde.org"); about.addAuthor("Emiliano Gulmini", I18N_NOOP("Current maintainer, code cleaner and rewriter"),"emi_barbarossa@yahoo.it"); about.addAuthor("Francois Dupou", - I18N_NOOP("Original author of the KFileReplace tool"), + I18N_NOOP("Original author of the TDEFileReplace tool"), "dupoux@dupoux.com"); TDECmdLineArgs::init(argc, argv, &about); @@ -52,14 +52,14 @@ int main(int argc, char *argv[]) // see if we are starting with session management if (app.isRestored()) { - RESTORE(KFileReplace); + RESTORE(TDEFileReplace); } else { // no session.. just start up normally TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); - KFileReplace *kfr = new KFileReplace; + TDEFileReplace *kfr = new TDEFileReplace; kfr->show(); if (args->count() == 0) |