diff options
Diffstat (limited to 'kio/misc/kpac/script.cpp')
-rw-r--r-- | kio/misc/kpac/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kio/misc/kpac/script.cpp b/kio/misc/kpac/script.cpp index 243f5f9c2..55faef8a1 100644 --- a/kio/misc/kpac/script.cpp +++ b/kio/misc/kpac/script.cpp @@ -49,7 +49,7 @@ TQString UString::qstring() const UString::UString( const TQString &s ) { UChar* data = new UChar[ s.length() ]; - std::memcpy( data, s.tqunicode(), s.length() * sizeof( UChar ) ); + std::memcpy( data, s.unicode(), s.length() * sizeof( UChar ) ); rep = Rep::create( data, s.length() ); } |