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