mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
21 lines
342 B
C++
21 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
|
||
|
*/
|