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.
17 lines
385 B
17 lines
385 B
#include <kapplication.h>
|
|
#include <klocale.h>
|
|
#include "kcharselect.h"
|
|
|
|
int main (int argc,char **argv)
|
|
{
|
|
KApplication app( argc, argv, "kcharselecttest" );
|
|
|
|
KCharSelect selector( 0, "char selector" );
|
|
selector.resize( selector.sizeHint() );
|
|
selector.show();
|
|
selector.setCaption( "KCharSelect Test" );
|
|
|
|
app.setMainWidget( &selector );
|
|
return app.exec();
|
|
}
|