summaryrefslogtreecommitdiffstats
path: root/kiconedit/main.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2014-02-06 17:28:41 -0600
committerDarrell Anderson <[email protected]>2014-02-06 17:28:41 -0600
commit7ad9c00daa716f90e6b71af463c50eebc93f4250 (patch)
treef472270f99cab538f9db00a80e09d35f4d351d6b /kiconedit/main.cpp
parent00af0dfbf87c62e25b5050102b7bd8df2ddcc1d0 (diff)
downloadtdegraphics-7ad9c00daa716f90e6b71af463c50eebc93f4250.tar.gz
tdegraphics-7ad9c00daa716f90e6b71af463c50eebc93f4250.zip
Finish renaming kiconedit->tdeiconedit.
Diffstat (limited to 'kiconedit/main.cpp')
-rw-r--r--kiconedit/main.cpp89
1 files changed, 0 insertions, 89 deletions
diff --git a/kiconedit/main.cpp b/kiconedit/main.cpp
deleted file mode 100644
index a9739af8..00000000
--- a/kiconedit/main.cpp
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- KDE Draw - a small graphics drawing program for the KDE.
- Copyright (C) 1998 Thomas Tanghus ([email protected])
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-*/
-
-// A lot of this code is lifted from KMail. Thanks, guys!
-
-#include <stdlib.h>
-
-#include <tdelocale.h>
-#include <tdeconfig.h>
-#include <tdeaboutdata.h>
-#include <tdecmdlineargs.h>
-#include <kdebug.h>
-
-#include "kiconedit.h"
-#include "config.h"
-#include "properties.h"
-
-static const char description[] =
- I18N_NOOP("TDE Icon Editor");
-
-static TDECmdLineOptions options[] =
-{
- { "+[file(s)]" , I18N_NOOP("Icon file(s) to open"), 0 },
- TDECmdLineLastOption
-};
-
-int main(int argc, char **argv)
-{
- TDEAboutData aboutData( "kiconedit", I18N_NOOP("TDEIconEdit"),
- VERSION, description, TDEAboutData::License_GPL,
- "(c) 1998, Thomas Tanghus");
-
- aboutData.addAuthor("Thomas Tanghus",0, "[email protected]");
- aboutData.addAuthor("John Califf",0, "[email protected]");
- aboutData.addAuthor("Laurent Montel",0, "[email protected]");
- aboutData.addAuthor("Aaron J. Seigo",0, "[email protected]");
- aboutData.addCredit( "Nadeem Hasan", "Rewrote UI to use XMLGUI\n"
- "Lots of fixes and cleanup", "[email protected]" );
- aboutData.addCredit( "Adrian Page", I18N_NOOP("Bug fixes and GUI tidy up"),
- TDECmdLineArgs::init( argc, argv, &aboutData );
- TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
-
- TDEApplication a;
-
-// setSignalHandler(signalHandler);
-
- if (a.isRestored())
- {
- RESTORE(TDEIconEdit);
- }
- else
- {
- TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
- for(int i = 0; i < args->count(); i++)
- {
- TDEIconEdit *ki = new TDEIconEdit(args->url(i), "kiconedit");
- TQ_CHECK_PTR(ki);
- }
-
- if (args->count() == 0)
- {
- TDEIconEdit *ki = new TDEIconEdit;
- TQ_CHECK_PTR(ki);
- }
- args->clear();
- }
-
- int rc = a.exec();
- delete TDEIconEditProperties::self();
- return rc;
-}
-