diff options
Diffstat (limited to 'libkdepim/tests/testutf7encoder2.cpp')
-rw-r--r-- | libkdepim/tests/testutf7encoder2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkdepim/tests/testutf7encoder2.cpp b/libkdepim/tests/testutf7encoder2.cpp index 57c195662..6d67bae0a 100644 --- a/libkdepim/tests/testutf7encoder2.cpp +++ b/libkdepim/tests/testutf7encoder2.cpp @@ -3,7 +3,7 @@ #include <tqtextstream.h> #include <string.h> #include <assert.h> -#include <iostream.h> +#include <iostream> int main( int argc, char * argv[] ) { if ( argc == 1 ) { @@ -31,10 +31,10 @@ int main( int argc, char * argv[] ) { len = 1; cout << (enc->fromUnicode(TQString(buffer[i]),len)).data(); } - cout << endl; + std::cout << std::endl; #else int len = buffer.length(); - cout << (enc->fromUnicode(buffer,len)).data() << endl;; + std::cout << (enc->fromUnicode(buffer,len)).data() << std::endl;; #endif // CHAR_WISE delete enc; #endif // else USE_STREAM |