summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kedittest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kedittest.cpp')
-rw-r--r--kdeui/tests/kedittest.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/kdeui/tests/kedittest.cpp b/kdeui/tests/kedittest.cpp
deleted file mode 100644
index 17a593e74..000000000
--- a/kdeui/tests/kedittest.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <kapplication.h>
-#include <keditcl.h>
-#include <tqpopupmenu.h>
-
-int main( int argc, char **argv )
-{
- KApplication app( argc, argv, "kedittest" );
- KEdit *edit = new KEdit( 0L );
- TQPopupMenu *pop = new TQPopupMenu( 0L );
- pop->insertItem( "Popupmenu item" );
- edit->installRBPopup( pop );
- edit->show();
- return app.exec();
-}