Ok, the long awaited config wizard is here (at least in a very basic state). There...
[quassel.git] / src / contrib / libqxt-2007-10-24 / tests / QxtGui / app / main.cpp
1 #include <QxtApplication>
2 #include "mainwindow.h"
3
4 int main(int argc, char* argv[])
5 {
6         QxtApplication a(argc, argv);
7         MainWindow w;
8         w.show();
9         return a.exec();
10 }