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