From: Michael Andreen Date: Sat, 27 Jan 2001 14:44:19 +0000 (+0000) Subject: Fixed some tabulation.. X-Git-Url: https://ruin.nu/git/?p=eonsl.git;a=commitdiff_plain;h=0932da81451325e5f0e28e8f246944616f371784 Fixed some tabulation.. --- 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(); }