summaryrefslogtreecommitdiffstats
path: root/kio/kfile/tests/kicondialogtest.cpp
blob: e3de3d587de615af1c7151fa61bc220f33d14b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <kapplication.h>
#include <kicondialog.h>

int main( int argc, char **argv )
{
    KApplication app( argc, argv, "kicondialogtest", true );

//    KIconDialog::getIcon(); 

    KIconButton button;
    app.setMainWidget( &button );
    button.show();
 

    return app.exec();
}

/* vim: et sw=4
 */