dolphin/kappfinder/main.cpp
Laurent Montel 59bf08d888 Return a value
svn path=/trunk/KDE/kdebase/apps/; revision=688781
2007-07-16 20:29:55 +00:00

50 lines
1.7 KiB
C++

/*
KAppfinder, the KDE application finder
Copyright (c) 2000 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of version 2 of the GNU General Public
License as published by the Free Software Foundation.
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.
*/
#include <kaboutdata.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include "toplevel.h"
static const char description[] = I18N_NOOP( "KDE's application finder" );
int main( int argc, char *argv[] )
{
KAboutData aboutData( "kappfinder", 0, ki18n( "KAppfinder" ),
"1.0", ki18n(description), KAboutData::License_GPL,
ki18n("(c) 1998-2000, Matthias Hoelzer-Kluepfel") );
aboutData.addAuthor( ki18n("Matthias Hoelzer-Kluepfel"), KLocalizedString(), "hoelzer@kde.org" );
aboutData.addAuthor( ki18n("Tobias Koenig"), KLocalizedString(), "tokoe@kde.org" );
KCmdLineArgs::init( argc, argv, &aboutData );
KCmdLineOptions options;
options.add("dir <dir>", ki18n( "Install .desktop files into directory <dir>" ));
KCmdLineArgs::addCmdLineOptions( options );
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
KApplication app;
TopLevel *dlg = new TopLevel( args->getOption( "dir" ) );
return dlg->exec();
}