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.
tdepim/libtdepim/komposer/core/tests/testkomposer.cpp

19 lines
361 B

#include "core.h"
#include <kplugininfo.h>
#include <kcmdlineargs.h>
#include <kapplication.h>
#include <kdebug.h>
int main( int argc, char **argv )
{
TDECmdLineArgs::init( argc, argv, "test", "test", "test", "0.1" );
TDEApplication app;
Komposer::Core *core = new Komposer::Core();
app.setMainWidget( core );
core->show();
return app.exec();
}