~weinzh/qfm/devel

« back to all changes in this revision

Viewing changes to qfm.cpp

  • Committer: Heinrich Weinz
  • Date: 2008-01-29 20:40:46 UTC
  • Revision ID: weinzh@googlemail.com-20080129204046-bvadhg6o8ce7o67r
Gamestar creation moved to qfmgame. Class qfmMain renamed in QfmMainWindow. Turn over implemented.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 ***************************************************************************/
20
20
 
21
21
#include <QApplication>
22
 
#include <qfmmain.h>
 
22
#include <qfmmainwindow.h>
23
23
 
24
24
int main(int argc, char *argv[]){
25
25
        QApplication app(argc, argv);
26
 
        QfmMain *mainWindow = new QfmMain();
 
26
        QfmMainWindow *mainWindow = new QfmMainWindow();
27
27
        mainWindow->setVisible(true);
28
28
        return app.exec();
29
29
}