kde-workspace/kcontrol/icons/tests/testicons.cpp
Ivailo Monev face85bda5 generic: adjust tests to KApplication and Katie changes
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-06-30 14:09:19 +00:00

15 lines
369 B
C++

/* Test program for icons setup module. */
#include <QApplication>
#include <kcomponentdata.h>
#include "icons.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
app.setApplicationName("testicons");
KComponentData componentData("testicons");
KIconConfig *w = new KIconConfig(componentData, 0L);
w->show();
return app.exec();
}