]> ruin.nu Git - eonsl.git/blob - eonsl/main.cpp
The makefile linked wrong, just some cleanup..
[eonsl.git] / eonsl / main.cpp
1 /***************************************************************************
2                           main.cpp  -  description
3                              -------------------
4     begin     : mån okt 23 17:11:28 CEST 2000
5     copyright : (C) 2000 by Michael Andreen
6     email     : whale@linux.nu
7     changes   :
8  ***************************************************************************/
9
10 /***************************************************************************
11  *                                                                         *
12  *   This program is free software; you can redistribute it and/or modify  *
13  *   it under the terms of the GNU General Public License as published by  *
14  *   the Free Software Foundation; either version 2 of the License, or     *
15  *   (at your option) any later version.                                   *
16  *                                                                         *
17  ***************************************************************************/
18
19 #include <qapplication.h>
20 #include <qfont.h>
21
22 #include "eonsl.h"
23
24 int main(int argc, char *argv[])
25 {
26   QApplication a(argc, argv);
27
28   a.setFont(QFont("helvetica", 12));
29   /* uncomment the following line, if you want a Windows 95 look*/
30   // a.setStyle(WindowsStyle);
31     
32   EonSL *eonsl=new EonSL();
33   a.setMainWidget(eonsl);
34
35   eonsl->setCaption("EonSL" VERSION);
36   eonsl->show();
37
38   return a.exec();
39 }