int main(int argc, char *argv[]) { QApplication app(argc, argv); Feedback mainWindow; mainWindow.show(); return app.exec(); }
int main( int argc, char* argv[] ) { /* Initialize */ KAboutData aboutData( PACKAGE, description, VERSION, description, KAboutData::License_GPL, "(c) 2004 TUBITAK/UEKAE", 0, 0, "*****@*****.**" ); aboutData.addAuthor( "S.Çağlar Onur", 0, "*****@*****.**" ); KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineArgs::addCmdLineOptions( options ); KApplication app; Feedback *k = new Feedback(); k->setFixedSize( 650, 350 ); k->show(); /* Enter Main Loop */ return app.exec(); }