blob: 019f6bd43115a84e329e49d8963f8c1b698508a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <kapplication.h>
#include <klocale.h>
#include "kcharselect.h"
int main (int argc,char **argv)
{
TDEApplication 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();
}
|