Minor cleanups in model and connect
[squawker.git] / main.cpp
blob74ebd6b0942cea361aab29ea9b11f077ff64dd7c
1 #include <QtGui>
2 #include <QHttp>
4 #include "w_connect.h"
6 int main(int argc, char *argv[])
8 QApplication app(argc, argv);
10 w_Connect *connectWindow = new w_Connect();
11 connectWindow->show();
13 return app.exec();