summaryrefslogtreecommitdiffstats
path: root/tdeio/tdefile/tests/kicondialogtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeio/tdefile/tests/kicondialogtest.cpp')
-rw-r--r--tdeio/tdefile/tests/kicondialogtest.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/tdeio/tdefile/tests/kicondialogtest.cpp b/tdeio/tdefile/tests/kicondialogtest.cpp
new file mode 100644
index 000000000..b2c56e159
--- /dev/null
+++ b/tdeio/tdefile/tests/kicondialogtest.cpp
@@ -0,0 +1,19 @@
+#include <kapplication.h>
+#include <kicondialog.h>
+
+int main( int argc, char **argv )
+{
+ TDEApplication app( argc, argv, "kicondialogtest" );
+
+// KIconDialog::getIcon();
+
+ KIconButton button;
+ app.setMainWidget( &button );
+ button.show();
+
+
+ return app.exec();
+}
+
+/* vim: et sw=4
+ */