mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
21 lines
482 B
C++
21 lines
482 B
C++
![]() |
#include <kaboutdata.h>
|
||
|
#include <kcmdlineargs.h>
|
||
|
#include <kapplication.h>
|
||
|
#include <klocale.h>
|
||
|
#include "kcharselect.h"
|
||
|
|
||
|
int main (int argc,char **argv)
|
||
|
{
|
||
|
KAboutData about("kcharselecttest", 0, ki18n("kcharselecttest"), "version");
|
||
|
KCmdLineArgs::init(argc, argv, &about);
|
||
|
|
||
|
KApplication app;
|
||
|
|
||
|
KCharSelect selector( 0, 0 );
|
||
|
selector.resize( selector.sizeHint() );
|
||
|
selector.show();
|
||
|
selector.setWindowTitle( "KCharSelect Test" );
|
||
|
|
||
|
return app.exec();
|
||
|
}
|