X-Git-Url: https://ruin.nu/git/?p=eonsl.git;a=blobdiff_plain;f=eonsl%2Fmain.cpp;h=90d1c11239071083990186cf6df7806cd9acdfb6;hp=98aa47693e3ebbfc07cc2fc440c3982703362208;hb=0932da81451325e5f0e28e8f246944616f371784;hpb=01ead96acae8c69f585f1ed94296c425f20fb78a diff --git a/eonsl/main.cpp b/eonsl/main.cpp index 98aa476..90d1c11 100644 --- a/eonsl/main.cpp +++ b/eonsl/main.cpp @@ -24,20 +24,20 @@ int main(int argc, char *argv[]) { - QApplication a(argc, argv); - + QApplication a(argc, argv); + QStyle* s = new QPlatinumStyle(); - a.setFont(QFont("helvetica", 12)); - /* uncomment the following line, if you want a Windows 95 look*/ - // a.setStyle(WindowsStyle); - a.setStyle(s); - EonSL *eonsl=new EonSL(); - a.setMainWidget(eonsl); + a.setFont(QFont("helvetica", 12)); + /* uncomment the following line, if you want a Windows 95 look*/ + // a.setStyle(WindowsStyle); + a.setStyle(s); + EonSL *eonsl=new EonSL(); + a.setMainWidget(eonsl); - eonsl->setCaption("EonSL" VERSION); + eonsl->setCaption("EonSL" VERSION); eonsl->showMaximized(); - eonsl->show(); + eonsl->show(); - return a.exec(); + return a.exec(); }