Merge branch 'filters/zionworx'
[kworship.git] / kworship / filters / zionworx / main.cpp
blob99b9f3c4acfa40d1eebfcd48d8eb1f064cfed492
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #include "KwZwStringList.h"
22 #include <kaboutdata.h>
23 #include <kcmdlineargs.h>
24 #include <kconfigdialogmanager.h>
25 #include <KDE/KLocale>
26 #include <KApplication>
28 int main(int argc, char **argv)
30 KAboutData about("kworship_zionworx", 0,
31 ki18n("KWorship Zionworx"), "0.1",
32 ki18n("Free/Open source church worship & presentation software"),
33 KAboutData::License_GPL_V2,
34 ki18n("(C) 2008 James Hogan"),
35 KLocalizedString(),
36 "http://kworship.org",
37 "bugs@kworship.org");
38 about.addAuthor( ki18n("James Hogan"), KLocalizedString(), "james@albanarts.com" );
39 KCmdLineArgs::init(argc, argv, &about);
41 KApplication app;
43 KwZwStringList* win = new KwZwStringList();
44 win->show();
46 return app.exec();