summaryrefslogtreecommitdiffstats
path: root/tdefilereplace/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdefilereplace/main.cpp')
-rw-r--r--tdefilereplace/main.cpp10
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)