summaryrefslogtreecommitdiffstats
path: root/kio/kfile/tests/kurlrequestertest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kfile/tests/kurlrequestertest.cpp')
-rw-r--r--kio/kfile/tests/kurlrequestertest.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/kio/kfile/tests/kurlrequestertest.cpp b/kio/kfile/tests/kurlrequestertest.cpp
deleted file mode 100644
index 0e4851cfb..000000000
--- a/kio/kfile/tests/kurlrequestertest.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <kapplication.h>
-#include <keditlistbox.h>
-#include <kurlrequester.h>
-#include <kurlrequesterdlg.h>
-
-int main( int argc, char **argv )
-{
- TDEApplication app( argc, argv, "kurlrequestertest" );
- KURL url = KURLRequesterDlg::getURL( "ftp://ftp.kde.org" );
- tqDebug( "Selected url: %s", url.url().latin1());
-
- KURLRequester *req = new KURLRequester();
- KEditListBox *el = new KEditListBox( TQString::fromLatin1("Test"), req->customEditor() );
- el->show();
- return app.exec();
-}