head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2005.01.25.20.24.22; author cworth; state Exp; branches; next ; desc @@ 1.1 log @Initial commit of qcairo demo as contributed by Zack Rusin @ text @#include "mainwindow.h" #include int main( int argc, char **argv ) { QApplication app( argc, argv ); MainWindow *w = new MainWindow(); app.setMainWidget( w ); w->setMinimumSize( 200, 200 ); w->show(); return app.exec(); } @