summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/klineeditdlgtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/klineeditdlgtest.cpp')
-rw-r--r--kdeui/tests/klineeditdlgtest.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/kdeui/tests/klineeditdlgtest.cpp b/kdeui/tests/klineeditdlgtest.cpp
deleted file mode 100644
index e43085c0c..000000000
--- a/kdeui/tests/klineeditdlgtest.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <kapplication.h>
-#include <klineeditdlg.h>
-
-#include <tqstring.h>
-#include <tqtextview.h>
-
-int main(int argc, char** argv)
-{
- KApplication app(argc, argv, "klineedittest");
- KLineEditDlg dialog( "_text", "_value", 0L );
- if(dialog.exec())
- {
- qDebug("Accepted.");
- } else {
- qDebug("Rejected.");
- }
- return 0;
-}
-