X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;ds=sidebyside;f=eonsl%2Fmain.cpp;h=fff91ba5d53d97f5534804aa84c7d9b5ddb37a3e;hb=447380c0224f2725b548d5c3826f880e565b2752;hp=093f9450b60c60c1b92237febc8c2dae5bf8a302;hpb=0e5f7ad99205e3fe1eec3ab18343a1ea1ab5b186;p=eonsl.git diff --git a/eonsl/main.cpp b/eonsl/main.cpp index 093f945..fff91ba 100644 --- a/eonsl/main.cpp +++ b/eonsl/main.cpp @@ -18,17 +18,20 @@ #include #include +#include #include "eonsl.h" int main(int argc, char *argv[]) { - Misapplication 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);