mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
20 lines
342 B
C++
20 lines
342 B
C++
#include <QtGui/QApplication>
|
|
#include <kcomponentdata.h>
|
|
#include <kicondialog.h>
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
QApplication app(argc, argv);
|
|
KComponentData componentData(QByteArray("kicondialogtest"));
|
|
|
|
// KIconDialog::getIcon();
|
|
|
|
KIconButton button;
|
|
button.show();
|
|
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
/* vim: et sw=4
|
|
*/
|