blob: 85adb7b3508b46a002c015419f5e3d8c33823361 (
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");
TDEIconConfig *w = new TDEIconConfig(0L, "testicons");
app.setMainWidget(w);
w->show();
return app.exec();
}
|