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
12 years ago
|
#include <tdeaboutdata.h>
|
||
|
#include <tdeapplication.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
12 years ago
|
#include <tdelocale.h>
|
||
12 years ago
|
#include <tdecmdlineargs.h>
|
||
15 years ago
|
|
||
|
#include "mainWindow.h"
|
||
|
|
||
|
int main( int argc, char ** argv )
|
||
|
{
|
||
12 years ago
|
TDEAboutData aboutData("testkabc",I18N_NOOP("TestKabc"),"0.1");
|
||
12 years ago
|
TDECmdLineArgs::init(argc,argv,&aboutData);
|
||
15 years ago
|
|
||
12 years ago
|
TDEApplication app;
|
||
15 years ago
|
|
||
|
MainWindow *w = new MainWindow;
|
||
|
w->show();
|
||
15 years ago
|
app.connect( &app, TQT_SIGNAL( lastWindowClosed() ), &app, TQT_SLOT( quit() ) );
|
||
15 years ago
|
return app.exec();
|
||
|
}
|