blob: ccd6cd10ad29647f1697e427e2af08a8f5d6ad46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <tdeapplication.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();
}
|