You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
477 B
21 lines
477 B
#include <tdeaboutdata.h>
|
|
#include <tdeapplication.h>
|
|
#include <kdebug.h>
|
|
#include <tdelocale.h>
|
|
#include <tdecmdlineargs.h>
|
|
|
|
#include "mainWindow.h"
|
|
|
|
int main( int argc, char ** argv )
|
|
{
|
|
TDEAboutData aboutData("testkabc",I18N_NOOP("TestKabc"),"0.1");
|
|
TDECmdLineArgs::init(argc,argv,&aboutData);
|
|
|
|
TDEApplication app;
|
|
|
|
MainWindow *w = new MainWindow;
|
|
w->show();
|
|
app.connect( &app, TQT_SIGNAL( lastWindowClosed() ), &app, TQT_SLOT( quit() ) );
|
|
return app.exec();
|
|
}
|