diff options
author | Slávek Banko <[email protected]> | 2017-01-29 02:45:55 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-01-29 02:48:51 +0100 |
commit | 97b5a9f18f1708bc0fb9b3eb6c8c22be848aabdd (patch) | |
tree | 3232df186074e2e0988d2c2e24c9b01b251eccbd /tdeabc | |
parent | 0cacbbb53f9ae2ea0d296657932c61cd9cf79c52 (diff) | |
download | tdelibs-97b5a9f18f1708bc0fb9b3eb6c8c22be848aabdd.tar.gz tdelibs-97b5a9f18f1708bc0fb9b3eb6c8c22be848aabdd.zip |
testing: fix utf8 handling in tdeabc/testread2
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit e305bd818c9cd470a0b079b4e41eb1e6ac101a52)
Diffstat (limited to 'tdeabc')
-rw-r--r-- | tdeabc/vcardparser/testutils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tdeabc/vcardparser/testutils.cpp b/tdeabc/vcardparser/testutils.cpp index 21348d341..2a89d82dd 100644 --- a/tdeabc/vcardparser/testutils.cpp +++ b/tdeabc/vcardparser/testutils.cpp @@ -113,6 +113,7 @@ vcardAsText( const TQString& location ) TQFile file( location ); if ( file.open( IO_ReadOnly ) ) { TQTextStream stream( &file ); + stream.setEncoding( TQTextStream::UnicodeUTF8 ); if ( !stream.eof() ) { line = stream.read(); } |