#ifdef QT_WINDOW #include <QtGui/QApplication> #include "hivewindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); HiveWindow w; w.show(); a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); return a.exec(); } #endif QT_WINDOW
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 5893 | Sam Stafford | Check in work to date on "hive". |