summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/kcharselecttest.cpp
blob: 5ee4ee381586d50c785e687a2cc04ca7209c0b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <tdeapplication.h>
#include <tdelocale.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();
}