summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kcharselecttest.cpp
blob: 5880c436a2214cedc9dae97e811e55a3805ec3d0 (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.tqsizeHint() );
    selector.show();
    selector.setCaption( "KCharSelect Test" );

    app.setMainWidget( &selector );
    return app.exec();
}