diff options
Diffstat (limited to 'tdeio/tdefile/tests/tdefilenotifytest.cpp')
-rw-r--r-- | tdeio/tdefile/tests/tdefilenotifytest.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tdeio/tdefile/tests/tdefilenotifytest.cpp b/tdeio/tdefile/tests/tdefilenotifytest.cpp new file mode 100644 index 000000000..10dd5959d --- /dev/null +++ b/tdeio/tdefile/tests/tdefilenotifytest.cpp @@ -0,0 +1,10 @@ +#include <tdeapplication.h> +#include <knotifydialog.h> + +int main( int argc, char **argv ) +{ + TDEApplication app( argc, argv, "knotifytest", true ); + KNotifyDialog *dlg = new KNotifyDialog(); + dlg->addApplicationEvents( "twin" ); + return dlg->exec(); +} |