OSDN Git Service

gwenview: fix rotated test for the case of dsd_1838.nef
[kde/kde-extraapps.git] / ktimer / main.cpp
1 /*
2  * Copyright 2001 Stefan Schimanski <schimmi@kde.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #include <kapplication.h>
20 #include <klocale.h>
21 #include <kcmdlineargs.h>
22 #include <kaboutdata.h>
23
24 #include "ktimer.h"
25
26 static const char description[] =
27         I18N_NOOP("KDE Timer");
28
29 static const char version[] = "v0.10";
30
31 int main( int argc, char **argv )
32 {
33     KAboutData aboutData( "ktimer", 0, ki18n("KTimer"),
34                           version, ki18n(description), KAboutData::License_GPL,
35                           ki18n("(c) 2001, Stefan Schimanski"), KLocalizedString(),
36                           "http://utils.kde.org/projects/ktimer");
37     aboutData.addAuthor(ki18n("Stefan Schimanski"),KLocalizedString(), "schimmi@kde.org");
38     KCmdLineArgs::init( argc, argv, &aboutData );
39
40     KApplication app;
41     app.setQuitOnLastWindowClosed( false );
42
43     KTimerPref *timer = new KTimerPref;
44     app.setTopWidget( timer );
45
46     return app.exec();
47 }