summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kcharselecttest.cpp
blob: facd17bca00f4ada2f17235663f3b530a1734040 (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)
{
    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();
}