summaryrefslogtreecommitdiffstats
path: root/libkdepim/tests/testutf7decoder.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
commit2c2fbd828ca474671bb9e03681b30b115d8d6035 (patch)
tree526a9da418f8d3d7ccf515c37048d3dfc80f2843 /libkdepim/tests/testutf7decoder.cpp
parentf0610eece3676b6fe99f42cf4ef2b19a39a5c4e8 (diff)
downloadtdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.tar.gz
tdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'libkdepim/tests/testutf7decoder.cpp')
-rw-r--r--libkdepim/tests/testutf7decoder.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/libkdepim/tests/testutf7decoder.cpp b/libkdepim/tests/testutf7decoder.cpp
deleted file mode 100644
index b13fb30c3..000000000
--- a/libkdepim/tests/testutf7decoder.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "qutf7codec.h"
-#include "qutf7codec.cpp"
-#include <tqtextstream.h>
-#include <string.h>
-#include <assert.h>
-
-int main( int argc, char * argv[] ) {
- if ( argc == 1 ) {
- (void)new TQUtf7Codec;
-
- TQTextCodec * codec = TQTextCodec::codecForName("utf-7");
- assert(codec);
-
- TQTextIStream my_cin(stdin);
- my_cin.setCodec(codec);
-
- TQTextOStream my_cout(stdout);
-
- TQString buffer = my_cin.read();
-
- my_cout << buffer;
- } else {
- qWarning("usage: testutf7decoder string_to_decode\n");
- }
- TQTextCodec::deleteAllCodecs();
-}