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.
tdelibs/tdeui/tests/kcharselecttest.cpp

17 lines
389 B

#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();
}