blob: d47f8af72746a0e6a4116904098ab6913ac13876 (
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)
{
KApplication app(argc, argv, "testicons");
KIconConfig *w = new KIconConfig(0L, "testicons");
app.setMainWidget(w);
w->show();
return app.exec();
}
|