diff options
Diffstat (limited to 'tdeio/tdefile/tests/kicondialogtest.cpp')
-rw-r--r-- | tdeio/tdefile/tests/kicondialogtest.cpp | 19 |
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..3000e89a0 --- /dev/null +++ b/tdeio/tdefile/tests/kicondialogtest.cpp @@ -0,0 +1,19 @@ +#include <tdeapplication.h> +#include <kicondialog.h> + +int main( int argc, char **argv ) +{ + TDEApplication app( argc, argv, "kicondialogtest" ); + +// TDEIconDialog::getIcon(); + + TDEIconButton button; + app.setMainWidget( &button ); + button.show(); + + + return app.exec(); +} + +/* vim: et sw=4 + */ |