view src/qt-test.cpp @ 671:59aceb05f934

fixed quoting in the ./configure patch of package portaudio
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 26 Jan 2010 23:59:33 +0100
parents f77810598227
children 29f1ba4559ae
line wrap: on
line source

/* This file is part of mingw-cross-env.                     */
/* See doc/index.html or doc/README for further information. */

#include <QtGui/QApplication>
#include "ui_qt-test.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QMainWindow w;
    Ui::MainWindow u;
    u.setupUi(&w);
    w.show();
    return a.exec();
}