server: intialize aux_header buffer to null if the data is missing.
[tridge/openchange.git] / branches / plugfest / qt / demo / main.cpp
1 #include "demoapp.h"
2
3 #include <QtGui/QApplication>
4
5 int main(int argc, char *argv[])
6 {
7     QApplication app(argc, argv);
8
9     DemoApp *demo = new DemoApp();
10     demo->show();
11
12     return app.exec();
13 }