summaryrefslogtreecommitdiffstats
path: root/kcontrol/icons/testicons.cpp
blob: 64f326ebf82c28ea7d39e7701c145380c4ed4fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test programme for icons setup module. */

#include <kapplication.h>
#include "icons.h"

int main(int argc, char **argv)
{
    TDEApplication app(argc, argv, "testicons");
    KIconConfig *w = new KIconConfig(0L, "testicons");
    app.setMainWidget(w);
    w->show();
    return app.exec();
}