blob: c0a86bda186bcfe4b9b2d559fd3f38d95598c9e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <tdeapplication.h>
#include <kicondialog.h>
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "kicondialogtest", true );
// TDEIconDialog::getIcon();
TDEIconButton button;
app.setMainWidget( &button );
button.show();
return app.exec();
}
|