blob: 2eebd0117c9f3f695a8eded3f8daeab97bc904e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Test programme for icons setup module. */
#include <tdeapplication.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();
}
|