~ubuntu-app-review-contributors/ubuntu-app-reviews/widgets

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: App Bot
  • Date: 2012-06-24 22:31:38 UTC
  • Revision ID: appbot@holba.ch-20120624223138-h7dq69vovfa4d67y
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <QtGui/QApplication>
 
2
#include "mainwindow.h"
 
3
 
 
4
int main(int argc, char *argv[])
 
5
{
 
6
    QApplication a(argc, argv);
 
7
    MainWindow w;
 
8
    w.show();
 
9
    
 
10
    return a.exec();
 
11
}