mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
14 lines
341 B
C++
14 lines
341 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, "testicons");
|
|
KComponentData componentData("testicons");
|
|
KIconConfig *w = new KIconConfig(componentData, 0L);
|
|
w->show();
|
|
return app.exec();
|
|
}
|