summaryrefslogtreecommitdiffstats
path: root/kcontrol/icons/testicons.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/icons/testicons.cpp')
-rw-r--r--kcontrol/icons/testicons.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/kcontrol/icons/testicons.cpp b/kcontrol/icons/testicons.cpp
new file mode 100644
index 000000000..2eebd0117
--- /dev/null
+++ b/kcontrol/icons/testicons.cpp
@@ -0,0 +1,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();
+}