]> ruin.nu Git - eonsl.git/commitdiff
Fixed some tabulation..
authorMichael Andreen <harv@ruin.nu>
Sat, 27 Jan 2001 14:44:19 +0000 (14:44 +0000)
committerMichael Andreen <harv@ruin.nu>
Sat, 27 Jan 2001 14:44:19 +0000 (14:44 +0000)
eonsl/main.cpp

index 98aa47693e3ebbfc07cc2fc440c3982703362208..90d1c11239071083990186cf6df7806cd9acdfb6 100644 (file)
 
 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();
 }