summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kcharselecttest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kcharselecttest.cpp')
-rw-r--r--kdeui/tests/kcharselecttest.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/kdeui/tests/kcharselecttest.cpp b/kdeui/tests/kcharselecttest.cpp
deleted file mode 100644
index 5880c436a..000000000
--- a/kdeui/tests/kcharselecttest.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <kapplication.h>
-#include <klocale.h>
-#include "kcharselect.h"
-
-int main (int argc,char **argv)
-{
- KApplication app( argc, argv, "kcharselecttest" );
-
- KCharSelect selector( 0, "char selector" );
- selector.resize( selector.tqsizeHint() );
- selector.show();
- selector.setCaption( "KCharSelect Test" );
-
- app.setMainWidget( &selector );
- return app.exec();
-}